summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2021-11-18 06:19:14 -0500
committerNed Batchelder <ned@nedbatchelder.com>2021-11-18 12:12:27 -0500
commit181d71c7ae537299a74291e4671bd8b896bcd55d (patch)
tree15b8f49b3b78534f208c0059227eb133347e6c91
parent26b680d3d4253258161f1a20d556fbf3f3622581 (diff)
downloadpython-coveragepy-git-181d71c7ae537299a74291e4671bd8b896bcd55d.tar.gz
test: don't force flaky re-runs
It interferes with xfails, and causes double output, and other confusions.
-rw-r--r--setup.cfg2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.cfg b/setup.cfg
index e8cd8551..c2266362 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -2,7 +2,7 @@
# For details: https://github.com/nedbat/coveragepy/blob/master/NOTICE.txt
[tool:pytest]
-addopts = -q -n auto --strict-markers --force-flaky --no-flaky-report -rfeX --failed-first
+addopts = -q -n auto --strict-markers --no-flaky-report -rfeX --failed-first
python_classes = *Test
markers =
expensive: too slow to run during "make smoke"