We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 57ec048 + 747f1ad commit 98b4a62Copy full SHA for 98b4a62
.github/workflows/ci.yml
@@ -49,13 +49,18 @@ jobs:
49
- name: Install dependencies
50
run: uv sync --group=test
51
- name: Run pytest
52
- run: uv run pytest --cov=teufa --cov-report=xml tests/
+ run: uv run pytest --cov=teufa --cov-report=xml --junitxml=junit.xml --override-ini=junit_family=legacy tests/
53
env:
54
DATABASE_URL: postgresql+psycopg://postgres:postgres@localhost:5432/postgres
55
- name: Upload coverage reports to Codecov
56
uses: codecov/[email protected]
57
with:
58
token: ${{ secrets.CODECOV_TOKEN }}
59
+ - name: Upload test results to Codecov
60
+ if: ${{ !cancelled() }}
61
+ uses: codecov/test-results-action@v1
62
+ with:
63
+ token: ${{ secrets.CODECOV_TOKEN }}
64
build:
65
name: Build and push image
66
runs-on: ubuntu-latest
0 commit comments