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:
2026-04-05 22:46:47 +03:00
committed by GitHub
parent 99cd2e61e2
commit a00dedba79

View File

@@ -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