We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dba5f4e commit a5286a5Copy full SHA for a5286a5
1 file changed
.github/workflows/test-map.yml
@@ -42,10 +42,18 @@ jobs:
42
run: |
43
mkdir -p .ci
44
pytest -q --tb=short --disable-warnings -n 0 -p pytest_cov \
45
- --cov=ultraplot --cov-branch --cov-context=test --cov-report= \
+ --cov=ultraplot --cov-branch --cov-context=test \
46
+ --cov-report=xml:coverage.xml --cov-report= \
47
ultraplot/tests
48
python tools/ci/build_test_map.py --coverage-file .coverage --output .ci/test-map.json --root .
49
50
+ - name: Upload coverage reports to Codecov
51
+ uses: codecov/codecov-action@v5
52
+ with:
53
+ token: ${{ secrets.CODECOV_TOKEN }}
54
+ files: ./coverage.xml
55
+ name: codecov-test-map
56
+
57
- name: Cache test map
58
uses: actions/cache@v5
59
with:
0 commit comments