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", ],