tests: don't print xfails (#1865)

tests: skip warnings on xfails for now

Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com>
This commit is contained in:
Henry Schreiner
2024-06-12 10:46:24 -04:00
committed by GitHub
parent 89a5cfe272
commit 8d86d3122b
+6 -1
View File
@@ -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"]