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 1c4438e commit 967b825Copy full SHA for 967b825
tests/conftest.py
@@ -176,7 +176,7 @@ def check_import() -> bool:
176
177
178
@pytest.fixture(autouse=True)
179
-def set_event_loop() -> Iterator[None]:
+def set_event_loop(anyio_backend: str) -> Iterator[None]:
180
new_loop = asyncio.new_event_loop()
181
asyncio.set_event_loop(new_loop)
182
yield
@@ -205,7 +205,7 @@ def vcr_config():
205
206
207
208
-async def close_cached_httpx_client() -> AsyncIterator[None]:
+async def close_cached_httpx_client(anyio_backend: str) -> AsyncIterator[None]:
209
210
for provider in [
211
'openai',
0 commit comments