diff --git a/.travis.yml b/.travis.yml index 6fc21e092..78164aca7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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: diff --git a/tox.ini b/tox.ini index 1064d658c..be02d5b51 100644 --- a/tox.ini +++ b/tox.ini @@ -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]