M0: scaffold — uv project, FastAPI health, pytest

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
team3
2026-07-23 00:21:10 +02:00
commit 0a4c9a131a
8 changed files with 510 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
from fastapi.testclient import TestClient
from tft.api.app import app
def test_health():
client = TestClient(app)
resp = client.get("/health")
assert resp.status_code == 200
assert resp.json() == {"status": "ok"}