From 5fdec222422b5948cf25f0db6c3c64e772bde5c3 Mon Sep 17 00:00:00 2001 From: David Lord Date: Mon, 4 Oct 2021 12:19:05 -0700 Subject: [PATCH] ignore internal asyncio warning https://bugs.python.org/issue45097 --- setup.cfg | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup.cfg b/setup.cfg index a56d5535..f952317e 100644 --- a/setup.cfg +++ b/setup.cfg @@ -47,6 +47,8 @@ babel.extractors = testpaths = tests filterwarnings = error + # Python 3.9 raises a deprecation from internal asyncio code. + ignore:The loop argument:DeprecationWarning:asyncio[.]base_events:542 [coverage:run] branch = True -- 2.47.2