test: bootstrap backend pytest infrastructure with sanity tests

This commit is contained in:
2026-04-18 13:07:20 -04:00
parent e70ff636ea
commit 74f0086664
5 changed files with 27 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
"""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