8000 Ignore known upstream deprecation warnings · python/blurb_it@16f0dba · GitHub
[go: up one dir, main page]

Skip to content

Commit 16f0dba

Browse files
committed
Ignore known upstream deprecation warnings
1 parent c42c1a2 commit 16f0dba

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

pytest.ini

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,11 @@ addopts =
99
--cov-report xml
1010
xfail_strict = True
1111
asyncio_mode = auto
12-
filterwarnings = error
12+
filterwarnings =
13+
error
14+
ignore:'asyncio.get_event_loop_policy' is deprecated and slated for removal in Python 3.16:DeprecationWarning:pytest_asyncio
15+
ignore:'asyncio.iscoroutinefunction' is deprecated and slated for removal in Python 3.16; use inspect.iscoroutinefunction.. instead:DeprecationWarning:aiohttp
16+
ignore:'asyncio.set_event_loop' is deprecated and slated for removal in Python 3.16:DeprecationWarning:pytest_asyncio
17+
ignore:'asyncio.set_event_loop_policy' is deprecated and slated for removal in Python 3.16:DeprecationWarning:pytest_asyncio
1318
testpaths =
1419
tests

0 commit comments

Comments
 (0)
0