Skip to content

Commit f75f9d4

Browse files
committed
Merge remote-tracking branch 'refs/remotes/python-control/master'
2 parents 32323d4 + 531df81 commit f75f9d4

1 file changed

Lines changed: 10 additions & 4 deletions

File tree

.travis.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff 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
1718
before_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
3643
install:
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
4348
script:
4449
- coverage run setup.py test
50+
4551
after_success:
4652
- coveralls

0 commit comments

Comments
 (0)