diff --git a/.travis.yml b/.travis.yml index 62a28158a..848409301 100644 --- a/.travis.yml +++ b/.travis.yml @@ -21,8 +21,6 @@ jobs: include: - python: 3.8 env: TOX_ENV=py38 - - python: 3.8 - env: TOX_ENV=extra - python: 3.7 env: TOX_ENV=py37 - python: 3.6 diff --git a/tox.ini b/tox.ini index 31f6897f4..900c9c3fb 100644 --- a/tox.ini +++ b/tox.ini @@ -1,29 +1,26 @@ [tox] -envlist = py35,py36,py37,py38,extra,flake8,docs - -[testenv:extra] -deps = - {[testenv]deps} - circus-web - gevent - papa +envlist = py35,py36,py37,py38,flake8,docs [testenv] passenv = PWD deps = nose + nose-cov + coverage mock + circus-web + gevent + papa PyYAML tornado>=3.0,<5.0 pyzmq>=17.0 setenv = TESTING=1 - PYTHONHASHSEED=random PYTHONUNBUFFERED=1 commands = - nosetests -vs circus/tests + nosetests -vs --with-coverage --cover-package=circus circus/tests [testenv:docs]