From d7c63008282420e5395095dd69da25d473ee6522 Mon Sep 17 00:00:00 2001 From: Bu Sun Kim <8822365+busunkim96@users.noreply.github.com> Date: Mon, 8 Mar 2021 14:17:54 -0700 Subject: [PATCH] test: skip aiohttp version that breaks aioresponses (#717) --- noxfile.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/noxfile.py b/noxfile.py index d1f61b90c..168c1e2b6 100644 --- a/noxfile.py +++ b/noxfile.py @@ -32,7 +32,12 @@ "grpcio", ] -ASYNC_DEPENDENCIES = ["pytest-asyncio", "aioresponses", "asynctest"] +ASYNC_DEPENDENCIES = [ + "pytest-asyncio", + "aioresponses", + "asynctest", + "aiohttp!=3.7.4.post0", +] BLACK_VERSION = "black==19.3b0" BLACK_PATHS = [