feat: added e2e, unit tests and improved tests pipeline

This commit is contained in:
ITQ
2025-11-20 19:39:20 +03:00
parent 4ac902cf3b
commit f93c5a5966
7 changed files with 310 additions and 13 deletions
+3
View File
@@ -1,3 +1,5 @@
from http import HTTPStatus as status
from dishka import FromDishka
from httpx import AsyncClient
@@ -11,4 +13,5 @@ async def test_healthcheck(
response = await http_client.get("/healthcheck")
response_json = response.json()
assert response.status_code == status.OK
assert response_json["ok"]