Skip to content

Commit

Permalink
testsToConda
Browse files Browse the repository at this point in the history
  • Loading branch information
urmi-21 committed Feb 23, 2020
1 parent cd6c4f9 commit f32d50e
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,26 @@ install:
- wget https://sourceforge.net/projects/bbmap/files/BBMap_38.73.tar.gz/download -O /tmp/bbtools.tar.gz
- tar -xvzf /tmp/bbtools.tar.gz
- export PATH=$PATH:$PWD/bbmap/
#use conda
- sudo apt-get update
# 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/Miniconda2-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
- source "$HOME/miniconda/etc/profile.d/conda.sh"
- 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
- cd tests
- bash build_test_env.sh
- conda activate pyrpipe_test
- cd ..



Expand Down

0 comments on commit f32d50e

Please sign in to comment.