summaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2021-11-28 08:08:36 -0500
committerNed Batchelder <ned@nedbatchelder.com>2021-11-28 08:08:36 -0500
commitd17be155d85afb2bc804693deacfd2e1c5f8738e (patch)
tree4d327ff3ed4bbf39c7470da995eec6255548f3b3 /setup.cfg
parentef79b4eb91c5a88f48a630c1eed46134d98733d8 (diff)
downloadpython-coveragepy-git-d17be155d85afb2bc804693deacfd2e1c5f8738e.tar.gz
test(feat): track test times, and balance xdist workers
In the end, this seems to only speed things up by about 5%
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg10
1 files changed, 9 insertions, 1 deletions
diff --git a/setup.cfg b/setup.cfg
index 07697a94..221e1230 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -14,7 +14,15 @@ filterwarnings =
ignore:the imp module is deprecated in favour of importlib:DeprecationWarning
# xfail tests that pass should fail the test suite
-xfail_strict=true
+xfail_strict = true
+
+balanced_clumps =
+ ; Because of expensive session-scoped fixture:
+ VirtualenvTest
+ ; Because of shared-file manipulations (~/tests/actual/testing):
+ CompareTest
+ ; No idea why this one fails if run on separate workers:
+ GetZipBytesTest
[pep8]
# E265 block comment should start with '# '