From 83e75083a7bd29b2ad3a5846f97664ddbd632a7a Mon Sep 17 00:00:00 2001 From: Jacob Tomlinson Date: Tue, 6 Aug 2024 11:09:07 +0100 Subject: [PATCH] Reinstate pytest-asyncio dev dependency --- ci/environment.yml | 1 + setup.py | 1 + 2 files changed, 2 insertions(+) diff --git a/ci/environment.yml b/ci/environment.yml index b44f3935..ead5a844 100644 --- a/ci/environment.yml +++ b/ci/environment.yml @@ -9,5 +9,6 @@ dependencies: - flake8 - black - pytest + - pytest-asyncio - anyio - cryptography diff --git a/setup.py b/setup.py index 62db398f..d8743df3 100755 --- a/setup.py +++ b/setup.py @@ -12,6 +12,7 @@ extras_require["test"] = [ "pytest", + "pytest-asyncio", "anyio", "cryptography", ]