From b6dae6c95bee06f8d583ab09b84193b1f0cc8ff8 Mon Sep 17 00:00:00 2001 From: Eric Dill Date: Sat, 18 Jul 2015 08:53:34 -0400 Subject: [PATCH] MNT: don't install pyqt by default it is 'pyqt' not 'pyqt4'... MNT: debug! the quotations... it is always the quotations and those single quotes too... badly formatted if/elif block? does whitespace matter? --- .travis.yml | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index e99c701c..34bb9dda 100644 --- a/.travis.yml +++ b/.travis.yml @@ -51,10 +51,15 @@ install: - conda update conda --yes - conda create -n test_env python=${PYTHON} --yes - source activate test_env - - conda install numpy pyopengl pyqt pytest flake8 six coverage --yes - - if [${QT} == 'pyqt']; then - conda install pyqt4 --yes; - elif [${QT} == 'pyside']; then + - conda install numpy pyopengl pytest flake8 six coverage --yes + - echo ${QT} + - echo ${TEST} + - echo ${PYTHON} + + - if [ "${QT}" == "pyqt" ]; then + conda install pyqt --yes; + fi; + - if [ "${QT}" == "pyside" ]; then conda install pyside --yes; fi; - pip install pytest-xdist # multi-thread py.test