From 99dfecc8e882a508f5a871cb8e90eb6727261c04 Mon Sep 17 00:00:00 2001 From: ITQ Date: Fri, 25 Jul 2025 15:27:49 +0300 Subject: [PATCH] fix(e2e): added docker compose profiles --- tests/e2e/conftest.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/tests/e2e/conftest.py b/tests/e2e/conftest.py index df7759e..a41abea 100644 --- a/tests/e2e/conftest.py +++ b/tests/e2e/conftest.py @@ -20,6 +20,16 @@ def docker_compose() -> Generator[None]: args=[ "docker", "compose", + "--profile", + "loadtest", + "--profile", + "minio", + "--profile", + "observability", + "--profile", + "proxy", + "--profile", + "telegram_bot", "down", ], check=True, @@ -31,6 +41,8 @@ def docker_compose() -> Generator[None]: "compose", "--project-name", "adnova-testing", + "--profile", + "minio", "up", "-d", "--build", @@ -50,6 +62,8 @@ def docker_compose() -> Generator[None]: "compose", "--project-name", "adnova-testing", + "--profile", + "minio", "down", "-v", ],