mirror of
https://github.com/getnora-io/nora.git
synced 2026-04-12 05:40:31 +00:00
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%.
10 lines
257 B
TOML
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
|