-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #100 from lucventurini/development
Development
- Loading branch information
Showing
101 changed files
with
4,943 additions
and
2,248 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,23 @@ | ||
language: python | ||
python: | ||
- "3.4" | ||
- "3.5" | ||
install: "pip install -r requirements.txt" | ||
- "3.6" | ||
# Setup anaconda, see https://gist.github.com/dan-blanchard/7045057 | ||
before_install: | ||
- wget https://repo.continuum.io/miniconda/Miniconda3-4.2.12-Linux-x86_64.sh -O miniconda.sh | ||
- chmod +x miniconda.sh | ||
- ./miniconda.sh -b | ||
- export PATH=/home/travis/miniconda3/bin:$PATH | ||
- conda update --yes conda | ||
# The next couple lines fix a crash with multiprocessing on Travis and are not specific to using Miniconda | ||
- sudo rm -rf /dev/shm | ||
- sudo ln -s /run/shm /dev/shm | ||
# Install packages | ||
install: | ||
- conda create --yes -n env_name python=$TRAVIS_PYTHON_VERSION | ||
- source activate env_name | ||
- conda install --yes setuptools cython atlas numpy scipy scikit-learn biopython | ||
- pip install -r requirements.txt | ||
script: | ||
- "python3 setup.py nosetests -exe;" | ||
- python setup.py nosetests -exe; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.