Skip to content

Commit

Permalink
Bump pytest-asyncio from 0.25.1 to 0.25.2 in /testbed (#3092)
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot[bot] authored Jan 13, 2025
1 parent 459b63e commit 52d1d1f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
1 change: 1 addition & 0 deletions changes/3092.misc.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Updated pytest-asyncio from 0.25.1 to 0.25.2 in /testbed.
2 changes: 1 addition & 1 deletion testbed/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ test = [
"fonttools==4.55.3 ; sys.platform == 'linux'",
"pillow==11.0.0",
"pytest==8.3.4",
"pytest-asyncio==0.25.1",
"pytest-asyncio==0.25.2",
]

[tool.briefcase]
Expand Down
5 changes: 5 additions & 0 deletions testbed/tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,11 @@ def run_until_complete(self, future):
raise TypeError(f"Future type {type(future)} is not currently supported")
return asyncio.run_coroutine_threadsafe(coro, self.loop).result()

async def shutdown_asyncgens(self):
# The proxy event loop doesn't need to shut anything down; the
# underlying event loop will shut down its own async generators.
pass

def is_closed(self):
return self.closed

Expand Down

0 comments on commit 52d1d1f

Please sign in to comment.