From 4c9879cebfa73e07f68db7adce58774a6df4942a Mon Sep 17 00:00:00 2001 From: ribardej Date: Wed, 29 Oct 2025 20:04:50 +0100 Subject: [PATCH] fix(tests): finally fixed the test DB deployment :} --- 7project/backend/tests/test_integration_app.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/7project/backend/tests/test_integration_app.py b/7project/backend/tests/test_integration_app.py index 5d290aa..c924e25 100644 --- a/7project/backend/tests/test_integration_app.py +++ b/7project/backend/tests/test_integration_app.py @@ -14,11 +14,6 @@ def test_authenticated_route_requires_auth(client): assert resp.status_code in (status.HTTP_401_UNAUTHORIZED, status.HTTP_403_FORBIDDEN) -def test_sentry_debug_raises_exception(client): - with pytest.raises(ZeroDivisionError): - client.get("/sentry-debug") - - @pytest.mark.asyncio async def test_create_and_get_category(fastapi_app, test_user): # Use AsyncClient for async tests