File tree Expand file tree Collapse file tree 1 file changed +9
-4
lines changed
Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -28,19 +28,24 @@ before_install:
2828 - hash -r
2929 - conda config --set always_yes yes --set changeps1 no
3030 - conda update -q conda
31- - conda install --yes python=$TRAVIS_PYTHON_VERSION conda-build pip coverage
31+ # conda-build must be installed in the conda root environment
32+ - conda install conda-build
33+ # TODO: point at conda.anaconda.org?
3234 - conda config --add channels http://conda.binstar.org/cwrowley
3335 - conda info -a
36+ - conda create -q -n test-environment python="$TRAVIS_PYTHON_VERSION" pip coverage slycot
37+ - source activate test-environment
38+ # coveralls not in conda repos
39+ - pip install coveralls
3440
3541# Install packages
3642install :
37- - conda install slycot
38- - conda build conda-recipe
43+ - conda build --python "$TRAVIS_PYTHON_VERSION" conda-recipe
3944 - conda install control --use-local
40- - pip install coveralls
4145
4246# command to run tests
4347script :
4448 - coverage run setup.py test
49+
4550after_success :
4651 - coveralls
You can’t perform that action at this time.
0 commit comments