-
Notifications
You must be signed in to change notification settings - Fork 137
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Sync methods do not trigger async fixtures even if pytest.mark.anyio annotated #803
Comments
There is nothing in that test that would cause it to be picked up by the AnyIO pytest plugin. You have an Furthermore, the description speaks of sync tests, but in the snippet you have an async test. Is this just a copy/paste error? Lastly, the pytest plugin is intended for running async test functions, and won't activate for sync test functions. I've been thinking of extending the functionality to run async fixtures on sync functions, but I didn't have a plausible use case for it. Additionally, given that the event loop would be suspended during a sync test function, async fixtures could only be used to generate test data, and not provide background services (which is what I usually use them for). It could be a footgun causing people to complain that their tasks hang while the test is running. |
My example is flawed, but yes, I have the marker and yes, the from pytest_alembic import Config, MigrationContext
from pytest_alembic.tests import test_upgrade as upgrade
pytestmark = pytest.mark.anyio
@pytest.fixture(scope="session") # must be session scoped to support sessions scooped DB setup
def anyio_backend() -> tuple[str, dict[str, bool]]:
return "asyncio", {"use_uvloop": True}
@pytest.fixture(scope="session", name="db")
async def _setup_db() -> None:
if await database_exists(ENGINE.url): # pragma: no branch
await drop_database(ENGINE.url) # pragma: no cover
await setup_db()
@pytest.mark.usefixtures("db")
def test_upgrade(alembic_runner: MigrationContext) -> None:
upgrade(alembic_runner)
Yes, this is my problem at this time.
Providing the use case right in this issue 😊
I could live with a world where this would raise an error out of the box (rather than silently pass through the coroutine), and require a |
Raise an error, under what conditions? If the |
This is #789 / pytest-dev/pytest#10839, no? |
Are you suggesting that the anyio pytest plugin should be triggered for sync functions, but then instead of running the function in question, it should check if it depends on async fixtures and raise an error then? |
#789 suggests directly erroring if the For @gaborbernat I think you should simply make the test async, even if it only contains sync code in the test body, since it's pretty much equivalent to async def test_upgrade():
async with CreateAlembicRunner() as alembic_runner:
upgrade(alembic_runner) |
Things to check first
I have searched the existing issues and didn't find my bug already reported there
I have checked that my bug is still present in the latest release
AnyIO version
4.6.0
Python version
3.12
What happened?
When trying to use this library with https://github.com/schireson/pytest-alembic (that has sync tests calling the async code https://pytest-alembic.readthedocs.io/en/latest/asyncio.html) I noticed that if you have an async fixture for a sync test, the fixture is not evaluated and instead the coroutine is inserted as value for the fixture.
How can we reproduce the bug?
(Note I also ran into schireson/pytest-alembic#119 when debugging this)
The text was updated successfully, but these errors were encountered: