Edit per @minrk review

This commit is contained in:
Carol Willing
2017-02-10 10:40:42 -08:00
parent 8b4d089376
commit f75c4c0ba3

View File

@@ -1,11 +1,12 @@
# http://travis-ci.org/#!/jupyter/jupyterhub
language: python
python:
- 3.3
- 3.4
- 3.5
- 3.6
- nightly
- 3.6
- 3.5
- 3.4
- 3.3
# installing dependencies
before_install:
@@ -17,8 +18,7 @@ install:
# running tests
script:
- if [[ $TRAVIS_PYTHON_VERSION == '3.6' || $TRAVIS_PYTHON_VERSION == 'nightly' ]]; then pytest --maxfail=2 --cov=jupyterhub jupyterhub/tests; fi # for Python 3.6 and above
- if [[ $TRAVIS_PYTHON_VERSION == '3.5' || $TRAVIS_PYTHON_VERSION == '3.4' || $TRAVIS_PYTHON_VERSION == '3.3' ]]; then py.test --maxfail=2 --cov=jupyterhub jupyterhub/tests; fi # for < 3.5
- pytest --maxfail=2 --cov=jupyterhub jupyterhub/tests
after_success:
- codecov