summaryrefslogtreecommitdiff
path: root/tests/conftest.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/conftest.py')
-rw-r--r--tests/conftest.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/conftest.py b/tests/conftest.py
index 03b51b2c..600ada44 100644
--- a/tests/conftest.py
+++ b/tests/conftest.py
@@ -47,6 +47,12 @@ def set_warnings():
warnings.filterwarnings(
"ignore",
+ category=DeprecationWarning,
+ message=r"module 'sre_constants' is deprecated",
+ )
+
+ warnings.filterwarnings(
+ "ignore",
category=pytest.PytestRemovedIn8Warning,
)