Skip to content

Commit

Permalink
Fixing windows
Browse files Browse the repository at this point in the history
  • Loading branch information
TreyWW committed Feb 9, 2024
1 parent 04fe6bd commit 550f095
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,19 @@ jobs:
# run docker compose & tests
#----------------------------------------------
- name: Build and run docker-compose.ci.yml
if: startsWith(matrix.os, 'windows-')
run: docker-compose up -d --wait --wait-timeout 30

- name: Build and run docker-compose.ci.yml
if: startsWith(matrix.os, 'ubuntu-')
run: docker compose up -d --wait --wait-timeout 30

- name: Run the test scripts
if: startsWith(matrix.os, 'ubuntu-')
run: |
docker compose exec -T myfinances_django ./infrastructure/backend/scripts/tests/views.sh
- name: Run the test scripts
if: startsWith(matrix.os, 'windows-')
run: docker compose exec -T myfinances_django ./infrastructure/backend/scripts/tests/views.sh

0 comments on commit 550f095

Please sign in to comment.