mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
fix(pytest): ignore asyncio.base_events deprecation warnings
This deprecation warning is not fixed in a tagged release yet. Ignoring it for now; it has nothing to do with user code. Upstream bug at https://bugs.python.org/issue45097 Signed-off-by: Kevin Morris <kevr@0cost.org>
This commit is contained in:
parent
4ae3fbd5d1
commit
9b5eeb7652
1 changed files with 10 additions and 0 deletions
10
pytest.ini
Normal file
10
pytest.ini
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
[pytest]
|
||||||
|
# Ignore the following DeprecationWarning(s):
|
||||||
|
# - asyncio.base_events
|
||||||
|
# - DeprecationWarning speaking about internal asyncio
|
||||||
|
# using the loop= argument being deprecated starting
|
||||||
|
# with python 3.8, before python 3.10.
|
||||||
|
# - Note: This is a bug in upstream filed at
|
||||||
|
# https://bugs.python.org/issue45097
|
||||||
|
filterwarnings =
|
||||||
|
ignore::DeprecationWarning:asyncio.base_events
|
Loading…
Add table
Reference in a new issue