foxnouns/tests/conftest.py

9 lines
168 B
Python
Raw Normal View History

2024-03-13 17:03:18 +01:00
import pytest_asyncio
@pytest_asyncio.fixture(scope="session", autouse=True)
async def setup():
print("hello from setup!")
yield
print("bye from setup!")