Skip to content

Commit c89e5a8

Browse files
committed
Don't stop when 2 tests fail
This gives the false impression that only two tests are failing, and is very surprising behavior to have as default. Users who want this can pass the commandline arg to `py.test` when they want it.
1 parent 3703273 commit c89e5a8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ profile = "black"
3030
# ref: https://docs.pytest.org/en/stable/
3131
#
3232
[tool.pytest.ini_options]
33-
addopts = "--verbose --color=yes --durations=10 --maxfail=2"
33+
addopts = "--verbose --color=yes --durations=10"
3434
asyncio_mode = "auto"
3535
testpaths = ["tests"]
3636
timeout = "60"

0 commit comments

Comments
 (0)