From ba4b0b275a37543c5b4bf5c11637623ac210103b Mon Sep 17 00:00:00 2001 From: demo-bot Date: Sun, 9 Aug 2026 15:54:27 +0000 Subject: [PATCH] decomposer: scaffold crucible-agent-build-fastapi-endpoint --- tests/conftest.py | 17 +---------------- 1 file changed, 1 insertion(+), 16 deletions(-) diff --git a/tests/conftest.py b/tests/conftest.py index 3a0a506..4016ff0 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -1,16 +1 @@ -import httpx -import pytest_asyncio - -from endpoint_monitor.config import Settings -from endpoint_monitor.main import create_app - - -@pytest_asyncio.fixture -async def app(): - return create_app(Settings(max_monitors=10, request_timeout_seconds=1, max_redirects=2)) - - -@pytest_asyncio.fixture -async def client(app): - async with httpx.AsyncClient(transport=httpx.ASGITransport(app=app), base_url="http://test") as value: - yield value +# Env var setup that must run before app.config is imported.