Skip to content

Commit

Permalink
Quick fix: Ignore python internal deprecation warning (#6004)
Browse files Browse the repository at this point in the history
* Quick fix: Ignore python internal deprecation warning

* Update setup.cfg

Co-authored-by: Sviatoslav Sydorenko <sviat@redhat.com>

* Update setup.cfg

Co-authored-by: Andrew Svetlov <andrew.svetlov@gmail.com>
Co-authored-by: Sviatoslav Sydorenko <sviat@redhat.com>
  • Loading branch information
3 people authored Sep 18, 2021
1 parent 244c923 commit 0afb7dd
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,8 @@ addopts =
filterwarnings =
error
ignore:module 'ssl' has no attribute 'OP_NO_COMPRESSION'. The Python interpreter is compiled against OpenSSL < 1.0.0. Ref. https.//docs.python.org/3/library/ssl.html#ssl.OP_NO_COMPRESSION:UserWarning
# Temporarily ignore warnings internal to Python 3.9.7, can be removed again in 3.9.8.
ignore:The loop argument is deprecated since Python 3.8, and scheduled for removal in Python 3.10.:DeprecationWarning:asyncio.base_events
junit_suite_name = aiohttp_test_suite
norecursedirs = dist docs build .tox .eggs
minversion = 3.8.2
Expand Down

0 comments on commit 0afb7dd

Please sign in to comment.