File tree Expand file tree Collapse file tree 2 files changed +4
-7
lines changed Expand file tree Collapse file tree 2 files changed +4
-7
lines changed Original file line number Diff line number Diff line change 19
19
- SIX_VERSION=1.9 USE_OPTIONAL=true
20
20
21
21
install :
22
- - bash requirements-install.sh
22
+ - ./ requirements-install.sh
23
23
24
24
script :
25
25
- if [[ $TRAVIS_PYTHON_VERSION == pypy* ]]; then py.test; fi
Original file line number Diff line number Diff line change 1
- #! /bin/bash -e
1
+ #! /bin/bash -ex
2
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
3
+ pip install pip==6.1.0
7
4
8
5
pip install -U -r requirements-test.txt
9
6
10
7
if [[ $USE_OPTIONAL == " true" ]]; then
11
8
pip install -U -r requirements-optional.txt
12
9
fi
13
10
14
- if [[ $SIX_VERSION != " false " ]]; then
11
+ if [[ $SIX_VERSION ]]; then
15
12
pip install six==$SIX_VERSION
16
13
fi
17
14
You can’t perform that action at this time.
0 commit comments