Skip to content

Commit

Permalink
Fix coverage report generation
Browse files Browse the repository at this point in the history
  • Loading branch information
kdeldycke committed Sep 6, 2024
1 parent 8769083 commit a72b8cf
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,12 @@ module = ["boltons.*", "furo"]

[tool.pytest.ini_options]
# https://docs.pytest.org/en/latest/customize.html#pyproject-toml
addopts = ["--durations=10", "--cov-report=term", "--cov-report=xml"]
addopts = [
"--durations=10",
"--cov=extra_platforms",
"--cov-report=term",
"--cov-report=xml",
]
# Make sure tests that are expected to fail do not resurect and start working all of a sudden.
xfail_strict = true

Expand Down

0 comments on commit a72b8cf

Please sign in to comment.