Skip to content

Commit

Permalink
test: avoid a 3.11.0b2 bug
Browse files Browse the repository at this point in the history
  • Loading branch information
nedbat committed May 31, 2022
1 parent 613191f commit a8758a6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@
# For details: https://github.com/nedbat/coveragepy/blob/master/NOTICE.txt

[tool:pytest]
addopts = -q -n auto --strict-markers --no-flaky-report -rfEX --failed-first
# Use --assert=plain since 3.11.0b2 has a bug: https://github.com/pytest-dev/pytest/issues/10008
# fixed by https://github.com/python/cpython/pull/93359
addopts = -q -n auto --strict-markers --no-flaky-report -rfEX --failed-first --assert=plain
python_classes = *Test
markers =
expensive: too slow to run during "make smoke"
Expand Down

0 comments on commit a8758a6

Please sign in to comment.