test(coverage): Avoid redundant test runs

There's no need in almost all cases to run the tests both under the coverage collector
and without it.  This fixes the default set of tests to avoid that.  Specifically, don't
run tests under the coverage collector by default for all environments since we don't
capture any error or failure conditions on reporting coverage anyways.
This commit is contained in:
Ross Patterson 2020-09-24 12:17:45 -07:00
parent a8ef046b50
commit ce20ac6a74

View File

@ -7,7 +7,7 @@
twisted = 1
[tox]
envlist = {py27,pypy27,py36}{-coverage,},codechecks
envlist = py27,py36,pypy27,codechecks
minversion = 2.4
[testenv]