From 5fb8ba90fddb0cd4e7cd36b281b95cc2ee75a5b1 Mon Sep 17 00:00:00 2001 From: Anikesh Suresh Date: Fri, 24 Jan 2025 11:44:26 +0000 Subject: [PATCH] fix for github workflow #5 --- .github/workflows/.ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/.ci.yml b/.github/workflows/.ci.yml index 3d970b8..aed04ca 100644 --- a/.github/workflows/.ci.yml +++ b/.github/workflows/.ci.yml @@ -95,11 +95,11 @@ jobs: # Sleep 10 seconds to give time for containers to start - name: Start MongoDB and MinIO run: | - docker compose up -d mongo-db minio minio_create_buckets + docker compose -f docker-compose-test.yml up -d mongo-db minio minio_create_buckets sleep 10 - name: Create MinIO buckets run: | - docker compose up minio_create_buckets + docker compose -f docker-compose-test.yml up minio_create_buckets - name: Run e2e tests run: pytest -c test/pytest.ini test/e2e/ --cov