From bdfb0bd13ef0101d374a95de1d864d9e1b4ca96e Mon Sep 17 00:00:00 2001 From: Henry Schreiner Date: Tue, 11 Jun 2024 16:16:08 -0400 Subject: [PATCH] tests: skip warnings on xfails for now Signed-off-by: Henry Schreiner --- pyproject.toml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 5e90549c9..dfce183e5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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"]