mirror of
https://github.com/certbot/certbot.git
synced 2026-08-01 08:08:00 +02:00
Ignore color_scheme warning from IPython. (#6714)
This PR in combination with #6713 resolves issues with using ipdb with pytest.
This commit is contained in:
@@ -8,8 +8,11 @@
|
|||||||
# 3- ignore warn for importing abstract classes from collections instead of collections.abc,
|
# 3- ignore warn for importing abstract classes from collections instead of collections.abc,
|
||||||
# too much third party dependencies are still relying on this behavior,
|
# too much third party dependencies are still relying on this behavior,
|
||||||
# but it should be corrected to allow Certbot compatiblity with Python >= 3.8
|
# 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 =
|
filterwarnings =
|
||||||
error
|
error
|
||||||
ignore:decodestring:DeprecationWarning
|
ignore:decodestring:DeprecationWarning
|
||||||
ignore:TLS-SNI-01:DeprecationWarning
|
ignore:TLS-SNI-01:DeprecationWarning
|
||||||
ignore:.*collections\.abc:DeprecationWarning
|
ignore:.*collections\.abc:DeprecationWarning
|
||||||
|
ignore:The `color_scheme` argument is deprecated:DeprecationWarning:IPython.*
|
||||||
|
|||||||
Reference in New Issue
Block a user