From 8c1940445503fd6678d0961600f2be81622793a2 Mon Sep 17 00:00:00 2001 From: Max Nanis Date: Tue, 24 Feb 2026 17:26:15 -0500 Subject: Extensive use of type checking. Movement of pytest conf towards handling managers (for db agnostic unittest). Starting to organize pytests. --- tests/http/test_basic.py | 11 ----------- 1 file changed, 11 deletions(-) (limited to 'tests/http/test_basic.py') diff --git a/tests/http/test_basic.py b/tests/http/test_basic.py index 7b03a1e..18359da 100644 --- a/tests/http/test_basic.py +++ b/tests/http/test_basic.py @@ -22,14 +22,3 @@ async def test_static_file_alias(httpxclient: AsyncClient): res = await client.get(p) assert res.status_code == 200, p assert res.json() == {} - - -@pytest.mark.anyio -async def test_health(httpxclient: AsyncClient): - client = httpxclient - """ - These are here for site crawlers and stuff.. - """ - res = await client.get("/health/") - assert res.status_code == 200 - assert res.json() == {} -- cgit v1.2.3