Created
July 16, 2015 16:16
-
-
Save ericmjl/681df3cef7279dab8d47 to your computer and use it in GitHub Desktop.
.travis.yml file
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
language: python | |
python: | |
# We don't actually use the Travis Python, but this keeps it organized. | |
- "2.7" | |
- "3.4" | |
sudo: false | |
install: | |
# We do this conditionally because it saves us some downloading if the | |
# version is the same. | |
- if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then | |
wget https://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh; | |
else | |
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh; | |
fi | |
- bash miniconda.sh -b -p $HOME/miniconda | |
- export PATH="$HOME/miniconda/bin:$PATH" | |
- hash -r | |
- conda config --set always_yes yes --set changeps1 no | |
- conda update -q conda | |
# Useful for debugging any issues with conda | |
- conda info -a | |
# Replace dep1 dep2 ... with your dependencies | |
- conda create -q -n test-environment python=$TRAVIS_PYTHON_VERSION scipy numpy networkx biopython pytest matplotlib | |
- source activate test-environment | |
- pip install python-Levenshtein | |
# Debugging | |
- which python | |
script: | |
# Your test script goes here | |
- py.test |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment