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 a33735f commit 7f5f62dCopy full SHA for 7f5f62d
.travis.yml
@@ -84,8 +84,8 @@ before_install:
84
- cd $TRAVIS_BUILD_DIR
85
86
install:
87
- - [[ $TRAVIS_PYTHON_VERSION == "3.4"* ]] && pip install mysqlclient==1.3.14
88
- - [[ $TRAVIS_PYTHON_VERSION != "3.4"* ]] && pip install mysqlclient
+ - if [[ $TRAVIS_PYTHON_VERSION == "3.4"* ]]; then pip install mysqlclient==1.3.14; fi
+ - if [[ $TRAVIS_PYTHON_VERSION != "3.4"* ]]; then pip install mysqlclient; fi
89
- pip install psycopg2
90
- pip install gpg pytz whoosh pyjwt
91
- pip install pytest-cov codecov
0 commit comments