fix: added context processor

This commit is contained in:
2024-12-16 09:54:59 +01:00
parent ef91ef9090
commit fe2888c9a6
9 changed files with 28 additions and 23 deletions
+6 -1
View File
@@ -20,9 +20,14 @@ jobs:
env:
DJANGO_SETTINGS_MODULE: config.settings
DEBUG: True
run: pytest --cov && coverage xml
run: pytest --cov --junitxml=junit.xml -o junit_family=legacy && coverage xml
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4.0.1
with:
token: ${{ secrets.CODECOV_TOKEN }}
slug: pablo-moreno/shoppy
- name: Upload test results to Codecov
if: ${{ !cancelled() }}
uses: codecov/test-results-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}