From f1ea7a08db72d61d44a2f5582bbb5355ca699efd Mon Sep 17 00:00:00 2001 From: Gil Forsyth Date: Fri, 22 Jul 2016 16:40:40 -0400 Subject: [PATCH] don't use conda envs because vox will get angry --- .travis.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 6ca2a1949..c6158bfcb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -25,13 +25,11 @@ install: fi - 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; - source activate test_env; + conda install -y python=3.4 pygments prompt_toolkit ply pytest pytest-cov pytest-timeout; pip install pytest-flake8 codecov; python setup.py install; 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; - source activate test_env; + conda install -y python=3.5 pygments prompt_toolkit ply pytest pytest-cov pytest-timeout; pip install pytest-flake8 codecov; python setup.py install; else