From 04fe6bd5fd72c08be1d24bd3dcfe0617c9011ad4 Mon Sep 17 00:00:00 2001 From: Trey Date: Fri, 9 Feb 2024 22:11:40 +0000 Subject: [PATCH] Fixing windows --- .github/workflows/run_tests.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/run_tests.yml b/.github/workflows/run_tests.yml index 432085bb9..998f62be5 100644 --- a/.github/workflows/run_tests.yml +++ b/.github/workflows/run_tests.yml @@ -53,9 +53,12 @@ jobs: run: | choco install docker-compose - + #---------------------------------------------- + # copy docker compose file + #---------------------------------------------- - name: Copy docker compose file - run: cp $DOCKER_COMPOSE_PATH ./docker-compose.yml + run: | + cp $GITHUB_WORKSPACE/$DOCKER_COMPOSE_PATH ./docker-compose.yml #---------------------------------------------- # run docker compose & tests @@ -65,4 +68,4 @@ jobs: - name: Run the test scripts run: | - docker compose exec -T myfinances_django ./infrastructure/backend/scripts/tests/views.sh \ No newline at end of file + docker compose exec -T myfinances_django ./infrastructure/backend/scripts/tests/views.sh