We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 423986d commit 4b44109Copy full SHA for 4b44109
1 file changed
.github/workflows/stage-lint-test.yml
@@ -36,11 +36,11 @@ jobs:
36
run: mypy ovmobilebench --ignore-missing-imports
37
38
- name: Run tests
39
- run: pytest tests/ -v --cov=ovmobilebench --cov=scripts --cov-report=xml --cov-report=term-missing
+ run: pytest tests/ -v --cov=ovmobilebench --cov=scripts --junitxml=junit.xml -o junit_family=legacy
40
41
+ - name: Upload coverage to Codecov
42
+ uses: codecov/codecov-action@v5
43
- - name: Upload coverage reports to Codecov
- uses: codecov/codecov-action@v5.4.3
44
- with:
45
- files: coverage.xml
46
-
+ - name: Upload test results to Codecov
+ if: ${{ !cancelled() }}
+ uses: codecov/test-results-action@v1
0 commit comments