From 8466049180771df179fff78aa6a70823e5618038 Mon Sep 17 00:00:00 2001 From: Willem Thiart Date: Fri, 22 Jul 2022 09:49:15 +0900 Subject: [PATCH] minor: add pytest-asyncio-cooperative to async plugin list --- src/_pytest/python.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/_pytest/python.py b/src/_pytest/python.py index 91054f370..8084867e8 100644 --- a/src/_pytest/python.py +++ b/src/_pytest/python.py @@ -177,6 +177,7 @@ def async_warn_and_skip(nodeid: str) -> None: ) msg += " - anyio\n" msg += " - pytest-asyncio\n" + msg += " - pytest-asyncio-cooperative\n" msg += " - pytest-tornasync\n" msg += " - pytest-trio\n" msg += " - pytest-twisted"