Skip to content
This repository was archived by the owner on Mar 6, 2026. It is now read-only.

Commit 3b3172e

Browse files
authored
tests: fix unit tests on python 3.6 / 3.7 (#630)
1 parent 6407258 commit 3b3172e

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

noxfile.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"grpcio",
3131
]
3232

33-
ASYNC_DEPENDENCIES = ["pytest-asyncio", "aioresponses"]
33+
ASYNC_DEPENDENCIES = ["pytest-asyncio", "aioresponses", "asynctest"]
3434

3535
BLACK_VERSION = "black==19.3b0"
3636
BLACK_PATHS = [
@@ -144,6 +144,7 @@ def docs(session):
144144
@nox.session(python="pypy")
145145
def pypy(session):
146146
session.install(*TEST_DEPENDENCIES)
147+
session.install(*ASYNC_DEPENDENCIES)
147148
session.install(".")
148149
session.run(
149150
"pytest",

0 commit comments

Comments
 (0)