diff options
author | Marius Gedminas <marius@gedmin.as> | 2019-08-18 18:10:38 +0300 |
---|---|---|
committer | Marius Gedminas <marius@gedmin.as> | 2019-08-18 18:10:38 +0300 |
commit | d952fc3b3008ab201fdb749918a6da0462557d6a (patch) | |
tree | 7b1bd58aff1be517f5ab45f82fc3577fee4fdae8 | |
parent | e4b580e79ba4545647fec8aa3d8e3f7c91571784 (diff) | |
download | zope-interface-drop-py34.tar.gz |
Make tox -p auto handle coverage rightdrop-py34
BTW I had some problems using tox -p auto before I started passing
--parallel-safe-build. I'm not sure why that isn't on by default.
-rw-r--r-- | tox.ini | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -1,6 +1,8 @@ [tox] envlist = py27,py27-pure,py35,py35-pure,py36,py37,pypy,pypy3,coverage,docs +# NB: if you add new environments, please also add them to depends in +# testenv:coverage so that parallel runs (tox -p auto) will work correctly [testenv] commands = @@ -36,6 +38,8 @@ commands = coverage report coverage html coverage xml +depends = py27,py27-pure,py35,py35-pure,py36,py37,pypy,pypy3 +parallel_show_output = true [testenv:docs] basepython = |