From 9b14dc4c7ca548e55a5d0ecea8a9b8eceea6afb6 Mon Sep 17 00:00:00 2001 From: ITQ Date: Thu, 12 Feb 2026 20:48:45 +0300 Subject: [PATCH] chore(): small improvements --- compose.prod.yaml | 2 ++ tests/e2e/tests/test_backend_health.py | 7 ------- 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/compose.prod.yaml b/compose.prod.yaml index f0acdbb..abb631a 100644 --- a/compose.prod.yaml +++ b/compose.prod.yaml @@ -8,6 +8,8 @@ x-defaults: &defaults include: - path: ./deploy/compose/compose.yaml <<: *defaults + - path: ./deploy/compose/compose.proxy.yaml + <<: *defaults - path: ./deploy/compose/compose.backend.yaml <<: *defaults - path: ./deploy/compose/compose.observability.yaml diff --git a/tests/e2e/tests/test_backend_health.py b/tests/e2e/tests/test_backend_health.py index 8ca8559..af01d15 100644 --- a/tests/e2e/tests/test_backend_health.py +++ b/tests/e2e/tests/test_backend_health.py @@ -8,13 +8,6 @@ logger = logging.getLogger(__name__) def test_healthcheck(client: Client) -> None: - """ - Tests integration with: - - valkey - - postgresql - - rustfs - """ - response = client.get("/ready?format=json") assert response.status_code == status.OK