don't use conda envs because vox will get angry

This commit is contained in:
Gil Forsyth 2016-07-22 16:40:40 -04:00
parent 4bea89c575
commit f1ea7a08db

View file

@ -25,13 +25,11 @@ install:
fi fi
- if [[ "$TRAVIS_PYTHON_VERSION" == "3.4" ]]; then - if [[ "$TRAVIS_PYTHON_VERSION" == "3.4" ]]; then
conda create -q -n test_env python=3.4 pygments prompt_toolkit ply pytest pytest-cov pytest-timeout; conda install -y python=3.4 pygments prompt_toolkit ply pytest pytest-cov pytest-timeout;
source activate test_env;
pip install pytest-flake8 codecov; pip install pytest-flake8 codecov;
python setup.py install; python setup.py install;
elif [[ "$TRAVIS_PYTHON_VERSION" == "3.5" ]]; then elif [[ "$TRAVIS_PYTHON_VERSION" == "3.5" ]]; then
conda create -q -n test_env python=3.5 pygments prompt_toolkit ply pytest pytest-cov pytest-timeout; conda install -y python=3.5 pygments prompt_toolkit ply pytest pytest-cov pytest-timeout;
source activate test_env;
pip install pytest-flake8 codecov; pip install pytest-flake8 codecov;
python setup.py install; python setup.py install;
else else