d819a184a1
The anyio_backend fixture is only consumed by pytest-anyio, which is not a dependency of this project (we use pytest-asyncio with asyncio_mode=auto). Also drop the unused pytest import from test_sanity.py. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
12 lines
196 B
Python
12 lines
196 B
Python
"""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
|