From 11769cf4617d14da6cf26ae8586b4ded6274c4b4 Mon Sep 17 00:00:00 2001 From: Tres Seaver Date: Thu, 22 Oct 2020 15:28:45 -0400 Subject: [PATCH 1/2] tests: fix unit tests on python 3.6 / 3.7 Closes #629. --- noxfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/noxfile.py b/noxfile.py index d497f5305..498b66def 100644 --- a/noxfile.py +++ b/noxfile.py @@ -30,7 +30,7 @@ "grpcio", ] -ASYNC_DEPENDENCIES = ["pytest-asyncio", "aioresponses"] +ASYNC_DEPENDENCIES = ["pytest-asyncio", "aioresponses", "asynctest"] BLACK_VERSION = "black==19.3b0" BLACK_PATHS = [ From 32d6dc836475b11689b3540ffa10aaa4df9dcf2f Mon Sep 17 00:00:00 2001 From: Tres Seaver Date: Thu, 22 Oct 2020 15:34:21 -0400 Subject: [PATCH 2/2] tests: fix pypy session --- noxfile.py | 1 + 1 file changed, 1 insertion(+) diff --git a/noxfile.py b/noxfile.py index 498b66def..b92f4939d 100644 --- a/noxfile.py +++ b/noxfile.py @@ -144,6 +144,7 @@ def docs(session): @nox.session(python="pypy") def pypy(session): session.install(*TEST_DEPENDENCIES) + session.install(*ASYNC_DEPENDENCIES) session.install(".") session.run( "pytest",