Files
nora/tarpaulin.toml
DevITWay | Pavel Volkov a00dedba79 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%.
2026-04-05 22:46:47 +03:00

10 lines
257 B
TOML

[nora]
packages = ["nora-registry"]
engine = "Llvm"
fail-under = 38
out = ["Json", "Html"]
output-dir = "coverage"
test-timeout = "5m"
exclude-files = ["nora-registry/src/ui/*", "nora-registry/src/main.rs", "nora-registry/src/openapi.rs"]
workspace = false