We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9cfb5be commit 4aa882aCopy full SHA for 4aa882a
.github/workflows/test-pytest.yaml
@@ -26,13 +26,14 @@ jobs:
26
27
- name: Run tests with coverage
28
run: |
29
- pytest \
30
- -k . \
31
- --cov=mqpy \
32
- --cov-append \
33
- --cov-report=term-missing:skip-covered \
34
- --junitxml=pytest.xml \
35
- -x | tee pytest-coverage.txt
+ pytest -k . --cov=mqpy --cov-append --cov-report=term-missing:skip-covered --junitxml=pytest.xml -x | tee pytest-coverage.txt
+
+ - name: Generate coverage summary
+ run: |
+ echo "## Test Coverage Summary" > summary.md
+ echo "```" >> summary.md
+ type pytest-coverage.txt >> summary.md
36
37
38
- name: Add coverage summary to GitHub summary
39
0 commit comments