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