mirror of
https://github.com/getnora-io/nora.git
synced 2026-04-12 04:30:32 +00:00
fix: correct tarpaulin exclude-files paths to workspace-relative (#92)
Paths were relative to package (src/ui/*) but tarpaulin expects workspace-relative paths (nora-registry/src/ui/*). This caused UI, main.rs and openapi.rs to be included in coverage calculation, dragging reported coverage from 61% to 29%.
This commit is contained in:
@@ -5,5 +5,5 @@ fail-under = 38
|
||||
out = ["Json", "Html"]
|
||||
output-dir = "coverage"
|
||||
test-timeout = "5m"
|
||||
exclude-files = ["src/ui/*", "src/main.rs", "src/openapi.rs"]
|
||||
exclude-files = ["nora-registry/src/ui/*", "nora-registry/src/main.rs", "nora-registry/src/openapi.rs"]
|
||||
workspace = false
|
||||
|
||||
Reference in New Issue
Block a user