From e70173a8314dcd5fa8ee26e20bce28249ba39eb8 Mon Sep 17 00:00:00 2001 From: Pavel Kirienko Date: Fri, 12 Jan 2024 15:54:29 +0200 Subject: [PATCH] Downgrade pytest-asyncio because of https://github.com/pytest-dev/pytest-asyncio/issues/701 --- noxfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/noxfile.py b/noxfile.py index 9966268..17d56bb 100644 --- a/noxfile.py +++ b/noxfile.py @@ -51,7 +51,7 @@ def test(session): # Now we can install dependencies for the full integration test suite. session.install( "pytest ~= 7.4", - "pytest-asyncio == 0.23.*", + "pytest-asyncio ~= 0.22.0", "coverage ~= 7.4", )