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.
1 parent dc5e87f commit 404e5c7Copy full SHA for 404e5c7
.travis.install.sh
@@ -20,15 +20,12 @@ if [[ $RUN == nosetests ]]; then
20
# Python 2.6 specific dependencies
21
if [[ $TRAVIS_PYTHON_VERSION == 2.6 ]]; then
22
pip install unittest2
23
+ elif [[ $TRAVIS_PYTHON_VERSION == 2.7 ]]; then
24
+ # dependencies for crasher tests
25
+ pip install Twisted urwid
26
fi
27
case $TRAVIS_PYTHON_VERSION in
- 2*)
- # dependencies for crasher tests
- pip install Twisted urwid
28
- # test specific dependencies
29
- pip install mock
30
- ;;
31
- pypy)
+ 2*|pypy)
32
# test specific dependencies
33
pip install mock
34
;;
0 commit comments