import pytest_asyncio from httpx import AsyncClient, ASGITransport from sqlmodel import SQLModel from sqlalchemy.ext.asyncio import create_async_engine from gsap_broker.app import app from gsap_broker import db as db_module @pytest_asyncio.fixture(autouse=True) async def test_db(): engine = create_async_engine("sqlite+aiosqlite:///./test_gsap.db") db_module.engine = engine async with engine.begin() as conn: await conn.run_sync(SQLModel.metadata.create_all) yield async with engine.begin() as conn: await conn.run_sync(SQLModel.metadata.drop_all) @pytest_asyncio.fixture async def client(): async with AsyncClient(transport=ASGITransport(app=app), base_url="http://test") as c: yield c