We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca12487 commit 6423cbfCopy full SHA for 6423cbf
1 file changed
.github/workflows/upstream-dev-ci.yaml
@@ -65,8 +65,21 @@ jobs:
65
if: success()
66
id: status
67
run: |
68
- python -m pytest -rf \
+ python -m pytest -rf
69
--report-log output-${{ matrix.python-version }}-log.jsonl
70
+ --cov=mplotutils
71
+ --cov-report=xml
72
+
73
+ - name: Upload code coverage to Codecov
74
+ uses: codecov/codecov-action@v5
75
+ env:
76
+ CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
77
+ with:
78
+ flags: unittests
79
+ env_vars: RUNNER_OS,PYTHON_VERSION
80
+ name: codecov-umbrella
81
+ fail_ci_if_error: false
82
83
- name: Generate and publish the report
84
if: |
85
failure()
0 commit comments