decomposer: scaffold crucible-agent-build-fastapi-endpoint
Some checks failed
ci / test (push) Has been cancelled

This commit is contained in:
2026-08-09 15:57:14 +00:00
parent 09e431c046
commit 99ce697f6c

View File

@@ -1,12 +1 @@
import pytest # Env var setup that must run before app.config is imported.
from fastapi.testclient import TestClient
from app.config import get_settings
from app.main import app
@pytest.fixture
def client():
get_settings.cache_clear()
with TestClient(app) as value:
yield value