From 766a35c22c0e2c7fbbfc1c28a57a021c07a10896 Mon Sep 17 00:00:00 2001 From: Kurt McKee Date: Tue, 23 Jul 2024 07:41:51 -0500 Subject: [PATCH] Ignore a coverage warning re: sysmon on Pythons < 3.12 --- pytest.ini | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pytest.ini b/pytest.ini index 9db630e5b1..990968d6f9 100644 --- a/pytest.ini +++ b/pytest.ini @@ -14,3 +14,5 @@ timeout = 30 filterwarnings = always ignore:RedisGraph support is deprecated as of Redis Stack 7.2:DeprecationWarning + # Ignore a coverage warning when COVERAGE_CORE=sysmon for Pythons < 3.12. + ignore:sys.monitoring isn't available:coverage.exceptions.CoverageWarning