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 a7704cd commit 8fb810dCopy full SHA for 8fb810d
.github/workflows/linux.yml
@@ -33,3 +33,8 @@ jobs:
33
environments: ${{ matrix.environment }}
34
- name: Run tests
35
run: pixi run --environment=tests-ci tests-ci
36
+ - name: Upload HTML coverage report
37
+ uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
38
+ with:
39
+ name: cov-html
40
+ path: build/coverage_report/**
pixi.toml
@@ -86,6 +86,9 @@ configure-coverage.cmd = [
86
]
87
configure-coverage.cwd = "."
88
configure-coverage.env.XSREF_TABLES_PATH = "$PWD/xsref/tables"
89
+# Open coverage report
90
+open-coverage.cmd = ["open", "index.html"]
91
+open-coverage.cwd = "build/coverage_report"
92
93
## Tests CI
94
0 commit comments