Skip to content

Commit ed659c6

Browse files
author
Obada Haddad
committed
fix compose file location
1 parent 507eab4 commit ed659c6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/tests_pytest.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
$HOME/.local/bin/uv run playwright install --with-deps
2222
- name: "Docker: Build containers and collect static files"
2323
run: |
24-
docker compose -f docker-compose.yml -f docker-compose.selenium.yml -f docker-compose.playwright.yml up -d
24+
docker compose -f docker-compose.yml -f docker-compose.selenium.yml up -d
2525
docker compose -f docker-compose.yml -f docker-compose.selenium.yml exec django python manage.py collectstatic --noinput
2626
docker compose -f docker-compose.yml -f docker-compose.selenium.yml exec django python manage.py migrate
2727
docker compose -f docker-compose.yml exec django python ./manage.py createsuperuser --no-input
@@ -35,7 +35,7 @@ jobs:
3535
needs: [build]
3636
steps:
3737
- name: "Lint: Check code style with flake8"
38-
run: docker compose exec django flake8 src/
38+
run: docker compose -f docker-compose.yml -f docker-compose.selenium.yml django flake8 src/
3939
unit_tests:
4040
name: Unit test with Selenium
4141
runs-on: self-hosted
@@ -58,5 +58,5 @@ jobs:
5858
steps:
5959
- name: Cleanup
6060
run: |
61-
docker compose -f docker-compose.yml -f docker-compose.selenium.yml -f docker-compose.playwright.yml down --rmi all
61+
docker compose -f docker-compose.yml -f docker-compose.selenium.yml down --rmi all
6262
rm -rf ${{ github.workspace }}/*

0 commit comments

Comments
 (0)