From 8d86d3122b59914dc19c88eafe22e83bc3bae000 Mon Sep 17 00:00:00 2001 From: Henry Schreiner Date: Wed, 12 Jun 2024 10:46:24 -0400 Subject: [PATCH] tests: don't print xfails (#1865) 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"]