From ce20ac6a74799bc4c820f4efd51162deff836d79 Mon Sep 17 00:00:00 2001 From: Ross Patterson Date: Thu, 24 Sep 2020 12:17:45 -0700 Subject: [PATCH] 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. --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 1452ba9b5..15f29d9a7 100644 --- a/tox.ini +++ b/tox.ini @@ -7,7 +7,7 @@ twisted = 1 [tox] -envlist = {py27,pypy27,py36}{-coverage,},codechecks +envlist = py27,py36,pypy27,codechecks minversion = 2.4 [testenv]