tell travis to run integration (but only on linux)

This commit is contained in:
meejah 2016-09-15 11:43:46 -06:00 committed by Brian Warner
parent ffdf4bf878
commit 37062d1307
2 changed files with 2 additions and 1 deletions

View File

@ -28,6 +28,7 @@ install:
script:
- tox -e codechecks
- if [ "${TRAVIS_OS_NAME}" = "osx" ]; then tox; else tox -e coverage; fi
- if [ "${TRAVIS_OS_NAME}" = "linux" ]; then tox -e integration; fi
after_success:
coveralls
notifications:

View File

@ -18,7 +18,7 @@ commands =
[testenv:integration]
commands =
echo 'run with "py.test --keep-tempdir -s -v integration/" to debug failures'
# NOTE: 'run with "py.test --keep-tempdir -s -v integration/" to debug failures'
py.test -v integration/
[testenv:coverage]