Skip to content

Commit fe47472

Browse files
committed
chore: add maxfail to pytest options
1 parent d765174 commit fe47472

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

pyproject.toml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -178,14 +178,16 @@ exclude = '''
178178

179179
[tool.pytest.ini_options]
180180
minversion = "6.0"
181-
addopts = "-ra -vv"
181+
addopts = "-ra -vv --maxfail=2 -rf"
182182
filterwarnings = "ignore:.*Using or importing the ABCs from 'collections' instead of from 'collections.abc'.*:DeprecationWarning"
183183
testpaths = ["tests"]
184184
junit_suite_name = "robotcode"
185-
log_cli = true
186-
log_cli_level = 4
187-
log_cli_format = "%(levelname)s %(name)s: %(message)s"
185+
# console_output_style = "classic"
186+
# log_cli = true
187+
# log_cli_level = 4
188+
# log_cli_format = "%(levelname)s %(name)s: %(message)s"
188189
asyncio_mode = "auto"
190+
faulthandler_timeout = 10
189191

190192

191193
[tool.coverage.run]

0 commit comments

Comments
 (0)