"""Sanity test to verify pytest infrastructure works.""" import asyncio def test_sync_sanity(): assert 1 + 1 == 2 async def test_async_sanity(): await asyncio.sleep(0) assert True