mirror of
https://github.com/xonsh/xonsh.git
synced 2025-03-04 08:24:40 +01:00
don't use conda envs because vox will get angry
This commit is contained in:
parent
4bea89c575
commit
f1ea7a08db
1 changed files with 2 additions and 4 deletions
|
@ -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
|
||||||
|
|
Loading…
Add table
Reference in a new issue