Skip to content

Commit

Permalink
Update packages even if they're installed on Travis already.
Browse files Browse the repository at this point in the history
  • Loading branch information
gsnedders committed Dec 3, 2015
1 parent 69ca916 commit c2321b0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions requirements-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ if [[ $USE_OPTIONAL != "true" && $USE_OPTIONAL != "false" ]]; then
exit 1
fi

pip install -r requirements-test.txt
pip install -U -r requirements-test.txt

if [[ $USE_OPTIONAL == "true" ]]; then
if [[ $TRAVIS_PYTHON_VERSION == "pypy" || $TRAVIS_PYTHON_VERSION == "pypy3" ]]; then
pip install -r requirements-optional.txt
pip install -U -r requirements-optional.txt
elif [[ $TRAVIS_PYTHON_VERSION == "2.6" ]]; then
pip install -r requirements-optional-2.6.txt
pip install -U -r requirements-optional-2.6.txt
else
pip install -r requirements-optional-cpython.txt
pip install -U -r requirements-optional-cpython.txt
fi
fi

0 comments on commit c2321b0

Please sign in to comment.