We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be100fd commit 79b018cCopy full SHA for 79b018c
pytest_trio/plugin.py
@@ -88,8 +88,8 @@ def _install_coroutine_fixture_if_needed(fixturedef, request):
88
if not deps and inspect.iscoroutinefunction(fixturedef.func):
89
# Top level async coroutine
90
corofix = CoroutineFixture(fixturedef.func, fixturedef)
91
- elif any(
92
- dep for dep in deps.values() if isinstance(dep, CoroutineFixture)):
+ elif any(dep for dep in deps.values()
+ if isinstance(dep, CoroutineFixture)):
93
# Fixture with coroutine fixture dependencies
94
corofix = CoroutineFixture(fixturedef.func, fixturedef, deps)
95
# The coroutine fixture must be evaluated from within the trio context
0 commit comments