changeset 5921:50ac0d3c50b9

support python 3.4 testing Got error with last commit. travis didn't even make it out of the starting gate. Maybe it needs an if form??
author John Rouillard <rouilj@ieee.org>
date Sun, 13 Oct 2019 14:35:41 -0400
parents ff7e089fd4ef
children bc81dbecab0f
files .travis.yml
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/.travis.yml	Sun Oct 13 14:17:33 2019 -0400
+++ b/.travis.yml	Sun Oct 13 14:35:41 2019 -0400
@@ -84,8 +84,8 @@
   - cd $TRAVIS_BUILD_DIR
 
 install:
-  - [[ $TRAVIS_PYTHON_VERSION == "3.4"* ]] && pip install mysqlclient==1.3.14
-  - [[ $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
   - pip install psycopg2
   - pip install gpg pytz whoosh pyjwt
   - pip install pytest-cov codecov

Roundup Issue Tracker: http://roundup-tracker.org/