Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'pytest.ini')
-rw-r--r--pytest.ini9
1 files changed, 0 insertions, 9 deletions
diff --git a/pytest.ini b/pytest.ini
index 49db7da09..e09813e52 100644
--- a/pytest.ini
+++ b/pytest.ini
@@ -4,15 +4,6 @@
[pytest]
# In general, all warnings are treated as errors. Here are the exceptions:
# 1- decodestring: https://github.com/rthalley/dnspython/issues/338
-# 2- ignore our own TLS-SNI-01 warning
-# 3- ignore warn for importing abstract classes from collections instead of collections.abc,
-# too much third party dependencies are still relying on this behavior,
-# but it should be corrected to allow Certbot compatiblity with Python >= 3.8
-# 4- ipdb uses deprecated functionality of IPython. See
-# https://github.com/gotcha/ipdb/issues/144.
filterwarnings =
error
ignore:decodestring:DeprecationWarning
- ignore:TLS-SNI-01:DeprecationWarning
- ignore:.*collections\.abc:DeprecationWarning
- ignore:The `color_scheme` argument is deprecated:DeprecationWarning:IPython.*