From c6faa6597e7f1e64bd8632dd999ed0afc3dd97bc Mon Sep 17 00:00:00 2001 From: Kurt McKee Date: Mon, 2 Sep 2024 06:31:04 -0500 Subject: [PATCH] Ignore a coverage warning re: sysmon on Pythons < 3.12 (#3334) Co-authored-by: Vladyslav Vildanov <117659936+vladvildanov@users.noreply.github.com> --- 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