We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1e61483 + ec674a9 commit 5fcd461Copy full SHA for 5fcd461
.travis.yml
@@ -19,7 +19,7 @@ env:
19
- SIX_VERSION=1.9 USE_OPTIONAL=true
20
21
install:
22
- - bash requirements-install.sh
+ - ./requirements-install.sh
23
24
script:
25
- if [[ $TRAVIS_PYTHON_VERSION == pypy* ]]; then py.test; fi
requirements-install.sh
@@ -1,17 +1,14 @@
1
-#!/bin/bash -e
+#!/bin/bash -ex
2
3
-if [[ $USE_OPTIONAL != "true" && $USE_OPTIONAL != "false" ]]; then
4
- echo "fatal: \$USE_OPTIONAL not set to true or false. Exiting."
5
- exit 1
6
-fi
+pip install pip==6.1.0
7
8
pip install -U -r requirements-test.txt
9
10
if [[ $USE_OPTIONAL == "true" ]]; then
11
pip install -U -r requirements-optional.txt
12
fi
13
14
-if [[ $SIX_VERSION != "false" ]]; then
+if [[ $SIX_VERSION ]]; then
15
pip install six==$SIX_VERSION
16
17
0 commit comments