Skip to content

Commit 9a3e821

Browse files
committed
fix: test failures around missing 'event_loop' fixture
Caused by the recent pytest-asyncio 1.0 release, which included pytest-dev/pytest-asyncio#1106. This is probably not the best fix - but it unbreaks things for now.
1 parent ec94733 commit 9a3e821

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@
2525
"flake8",
2626
"flake8_docstrings",
2727
"mock",
28-
"pytest",
28+
# doesn't support python 3.8
29+
"pytest<1.0",
2930
"pytest-asyncio",
3031
"pytest-cov",
3132
"pytest-mock",

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ deps =
2323
flake8_docstrings
2424
mock
2525
pytest
26-
pytest-asyncio
26+
pytest-asyncio<1.0
2727
pytest-mock
2828
pytest-random-order
2929
virtualenv

0 commit comments

Comments
 (0)