foxnouns/tests/conftest.py
2024-03-13 17:03:18 +01:00

8 lines
168 B
Python

import pytest_asyncio
@pytest_asyncio.fixture(scope="session", autouse=True)
async def setup():
print("hello from setup!")
yield
print("bye from setup!")