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?
This commit is contained in:
Eric Dill 2015-07-18 08:53:34 -04:00
parent 668884a974
commit b6dae6c95b

View File

@ -51,10 +51,15 @@ install:
- conda update conda --yes - conda update conda --yes
- conda create -n test_env python=${PYTHON} --yes - conda create -n test_env python=${PYTHON} --yes
- source activate test_env - source activate test_env
- conda install numpy pyopengl pyqt pytest flake8 six coverage --yes - conda install numpy pyopengl pytest flake8 six coverage --yes
- if [${QT} == 'pyqt']; then - echo ${QT}
conda install pyqt4 --yes; - echo ${TEST}
elif [${QT} == 'pyside']; then - echo ${PYTHON}
- if [ "${QT}" == "pyqt" ]; then
conda install pyqt --yes;
fi;
- if [ "${QT}" == "pyside" ]; then
conda install pyside --yes; conda install pyside --yes;
fi; fi;
- pip install pytest-xdist # multi-thread py.test - pip install pytest-xdist # multi-thread py.test