Skip to content

Commit

Permalink
Clean up pytest config
Browse files Browse the repository at this point in the history
  • Loading branch information
WilliamJamieson committed Dec 16, 2024
1 parent a12b70a commit 100fe1a
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ zip-safe = false
]

[tool.pytest.ini_options]
minversion = 4.6
minversion = 6.0
norecursedirs = [
"docs/_build",
"romancal/scripts",
Expand All @@ -139,9 +139,14 @@ doctest_plus = "enabled"
doctest_rst = "enabled"
text_file_format = "rst"
log_cli_level = "info"
xfail_strict = true
addopts = [
"--color=yes", # color test output
"--doctest-rst", # enable doctests
"--doctest-ignore-import-errors",
"--color=yes",
"--strict-config", # fail on unknown config options
"--strict-markers", # fail on unknown markers
"-ra", # Show summary of all failures/errorsproduct_names
]
markers = [
"soctests: run only the SOC tests in the suite.",
Expand Down

0 comments on commit 100fe1a

Please sign in to comment.