summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSviatoslav Sydorenko <wk@sydorenko.org.ua>2023-01-09 05:22:18 +0100
committerSviatoslav Sydorenko <wk@sydorenko.org.ua>2023-01-09 05:22:18 +0100
commit97ae5b72c51ba6be6cd0b3b378e0375eaeba6eec (patch)
tree85fb84187bde837b0b701d5e8f68e89cc279a3aa
parent7338b8364d4def72835d80c6315afbe5c96b20fd (diff)
downloadcherrypy-git-97ae5b72c51ba6be6cd0b3b378e0375eaeba6eec.tar.gz
🔧 Suppress `cgi` deprecation warning in pytest
-rw-r--r--pytest.ini3
1 files changed, 3 insertions, 0 deletions
diff --git a/pytest.ini b/pytest.ini
index aef459eb..3c88f9d0 100644
--- a/pytest.ini
+++ b/pytest.ini
@@ -59,6 +59,9 @@ filterwarnings =
ignore:the imp module is deprecated in favour of importlib; see the module's documentation for alternative uses:DeprecationWarning
ignore:the imp module is deprecated in favour of importlib; see the module's documentation for alternative uses:PendingDeprecationWarning
+ # TODO: Replace the use of `cgi`. It seems untrivial.
+ ignore:'cgi' is deprecated and slated for removal in Python 3.13:DeprecationWarning
+
junit_duration_report = call
junit_family = xunit2
junit_suite_name = cherrypy_test_suite