Skip to content

Commit 7d2967f

Browse files
fix(ci): Change directory before running coverage
This commit updates the `ci.yml` workflow to change into the `promo_code` directory before executing the `coverage run` command.
1 parent 61198c2 commit 7d2967f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
- name: Run tests and generate coverage report 🛡️
6666
run: >
6767
docker compose exec -T web sh -c
68-
"coverage run manage.py test && coverage xml"
68+
"cd promo_code && coverage run manage.py test && coverage xml"
6969
7070
- name: Upload coverage to Codecov 🚀
7171
uses: codecov/codecov-action@v5

0 commit comments

Comments
 (0)