-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtarpaulin.toml
More file actions
40 lines (36 loc) · 1.02 KB
/
tarpaulin.toml
File metadata and controls
40 lines (36 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# Tarpaulin configuration for code coverage
# Run with: cargo tarpaulin
[default]
# Run coverage for entire workspace
workspace = true
# Timeout in seconds (5 minutes)
timeout = "300s"
# Minimum line coverage threshold (%)
fail-under = 40
# Exclude generated client code and vendored dependencies
exclude-files = [
"clients/internal/*",
"rust/*",
"deps/*",
# Templates
"apis/api-template/*",
"clients/internal/client-template/*",
"services/service-template/*",
# Disabled crates
"cli/manatee-echo-resolver/*",
"libs/cueball-dns-resolver/*",
"libs/cueball-manatee-primary-resolver/*",
"libs/cueball-postgres-connection/*",
"libs/cueball-static-resolver/*",
"libs/cueball-tcp-stream-connection/*",
"libs/cueball/*",
"libs/fast/*",
"libs/libmanta/*",
"libs/moray/*",
"libs/quickcheck-helpers/*",
"libs/rebalancer-legacy/agent/*",
"libs/rebalancer-legacy/manager/*",
"libs/rebalancer-legacy/rebalancer/*",
"libs/rust-utils/*",
"libs/sharkspotter/*",
]