File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ python:
1212 - " 2.7"
1313 - " 3.3"
1414 - " 3.4"
15+ - " 3.5"
1516
1617# install required system libraries
1718before_install :
@@ -28,19 +29,24 @@ before_install:
2829 - hash -r
2930 - conda config --set always_yes yes --set changeps1 no
3031 - conda update -q conda
31- - conda install --yes python=$TRAVIS_PYTHON_VERSION conda-build pip coverage
32+ # conda-build must be installed in the conda root environment
33+ - conda install conda-build
34+ # TODO: point at conda.anaconda.org?
3235 - conda config --add channels http://conda.binstar.org/cwrowley
3336 - conda info -a
37+ - conda create -q -n test-environment python="$TRAVIS_PYTHON_VERSION" pip coverage slycot
38+ - source activate test-environment
39+ # coveralls not in conda repos
40+ - pip install coveralls
3441
3542# Install packages
3643install :
37- - conda install slycot
38- - conda build conda-recipe
44+ - conda build --python "$TRAVIS_PYTHON_VERSION" conda-recipe
3945 - conda install control --use-local
40- - pip install coveralls
4146
4247# command to run tests
4348script :
4449 - coverage run setup.py test
50+
4551after_success :
4652 - coveralls
You can’t perform that action at this time.
0 commit comments