Skip to content

Commit 966da01

Browse files
committed
fix(ci): explicitly exclude hsrs-macros from coverage
Proc macros execute at compile time and report 0% in tarpaulin, dragging down the Codecov number. The tarpaulin.toml already excludes it, but CLI --workspace may override the config. Make it explicit.
1 parent 479796b commit 966da01

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
with:
1818
tool: cargo-tarpaulin
1919
- name: Generate coverage
20-
run: cargo tarpaulin --workspace --out xml --output-dir coverage
20+
run: cargo tarpaulin --workspace --exclude hsrs-macros --out xml --output-dir coverage
2121
- name: Upload to Codecov
2222
uses: codecov/codecov-action@v5
2323
with:

0 commit comments

Comments
 (0)