From f75c4c0ba312936fa9929b1149f8287e2e62a15c Mon Sep 17 00:00:00 2001 From: Carol Willing Date: Fri, 10 Feb 2017 10:40:42 -0800 Subject: [PATCH] Edit per @minrk review --- .travis.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index 1c04e544..bbdf1a8d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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