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:
authorBrad Warren <bmw@users.noreply.github.com>2019-01-31 00:59:07 +0300
committerGitHub <noreply@github.com>2019-01-31 00:59:07 +0300
commit4237d4a3adbc1dd9e7dfca8f669ad73dee62e273 (patch)
tree8c86a7ecba8f5c563b0e00e82eeb6d3d98296579 /pytest.ini
parentca25d1b66a24e351739a6b4dbfadd8f471857721 (diff)
Ignore color_scheme warning from IPython. (#6714)
This PR in combination with #6713 resolves issues with using ipdb with pytest.
Diffstat (limited to 'pytest.ini')
-rw-r--r--pytest.ini3
1 files changed, 3 insertions, 0 deletions
diff --git a/pytest.ini b/pytest.ini
index 654b368f2..49db7da09 100644
--- a/pytest.ini
+++ b/pytest.ini
@@ -8,8 +8,11 @@
# 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.*