From a00dedba799a3c575520f44b342a21eaf66b5a23 Mon Sep 17 00:00:00 2001 From: DevITWay | Pavel Volkov Date: Sun, 5 Apr 2026 22:46:47 +0300 Subject: [PATCH] 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%. --- tarpaulin.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tarpaulin.toml b/tarpaulin.toml index d6ce7ee..f6b9988 100644 --- a/tarpaulin.toml +++ b/tarpaulin.toml @@ -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