We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2f41fb2 commit 70fbcdaCopy full SHA for 70fbcda
1 file changed
.github/workflows/OnPush.yml
@@ -49,11 +49,19 @@ jobs:
49
include_passed: true
50
check_name: Pytest Test Report (${{ matrix.python-version }})
51
52
+ - name: Merge coverage reports
53
+ if: success() || failure()
54
+ uses: danielpalme/ReportGenerator-GitHub-Action@v5
55
+ with:
56
+ reports: tests_reports/**/coverage.xml
57
+ targetdir: coverage-report
58
+ reporttypes: "cobertura"
59
+
60
- name: cobertura-report
61
if: success() || failure()
62
uses: 5monkeys/cobertura-action@v14
63
with:
- path: tests_reports/**/coverage.xml
64
+ path: coverage-report/Cobertura.xml
65
minimum_coverage: 90
66
fail_below_threshold: true
67
report_name: Coverage Report (${{ matrix.python-version }})
0 commit comments