summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2016-12-23 11:55:14 -0500
committerJason R. Coombs <jaraco@jaraco.com>2016-12-23 11:56:14 -0500
commite607c2c2e887b3a1140f82bdcb61b6389d183dcd (patch)
tree32b53b27e5074c5eacca95c4d5bca70051078007 /.travis.yml
parent6daeff98a87a978a6ed11178acc9b8d0f82d533d (diff)
downloadcherrypy-git-e607c2c2e887b3a1140f82bdcb61b6389d183dcd.tar.gz
In tox, invoke tox directly. No longer support running tests with setup.py test.
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 29221a4c..23c300aa 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -31,7 +31,7 @@ env:
before_install: 'if [ "$RUN_LINTS" = "true" ]; then pip install pre-commit; fi'
install: 'if [ "$RUN_LINTS" != "true" ]; then pip install -e .[test_tools,routes_dispatcher]; fi'
-script: 'if [ "$RUN_LINTS" = "true" ]; then pre-commit run --all-files; else python setup.py test; fi'
+script: 'if [ "$RUN_LINTS" = "true" ]; then pre-commit run --all-files; else python -m tox; fi'
deploy:
provider: pypi