Skip to content

Commit

Permalink
Added fix for Python 3.3 tests not completing on Travis.
Browse files Browse the repository at this point in the history
  • Loading branch information
mdbloice committed Jul 9, 2019
1 parent e6ef7bc commit 2b92c7e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ install:
else
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
fi
# Fixes an issue with version 3.3 of Python not being found
- if [[ $TRAVIS_PYTHON_VERSION == 3.3 ]]; then pip install virtualenv==15.2.0; fi
- bash miniconda.sh -b -p $HOME/miniconda
- export OPATH="$PATH" && export PATH="$HOME/miniconda/bin:$PATH"
- conda create -q -y -n test-environment python=$TRAVIS_PYTHON_VERSION pytest
Expand Down

0 comments on commit 2b92c7e

Please sign in to comment.