Skip to content

Commit

Permalink
tests: don't print xfails (#1865)
Browse files Browse the repository at this point in the history
tests: skip warnings on xfails for now

Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com>
  • Loading branch information
henryiii committed Jun 12, 2024
1 parent 89a5cfe commit 8d86d31
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 @@ -93,7 +93,12 @@ Homepage = "https://github.com/pypa/cibuildwheel"

[tool.pytest.ini_options]
minversion = "6.0"
addopts = ["-ra", "--showlocals", "--strict-markers", "--strict-config"]
addopts = [
"-rfEsX", # TODO: replace with -ra when pytest > 8.2.2 is released
"--showlocals",
"--strict-markers",
"--strict-config",
]
junit_family = "xunit2"
xfail_strict = true
filterwarnings = ["error"]
Expand Down

0 comments on commit 8d86d31

Please sign in to comment.