-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.tarpaulin.toml
More file actions
31 lines (28 loc) · 772 Bytes
/
Copy path.tarpaulin.toml
File metadata and controls
31 lines (28 loc) · 772 Bytes
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
[config]
workspace = true
# This packages only reuses other packages
# and do not have their own logic
exclude = [
"figx",
"command_clean",
"command_explain",
"command_fetch",
"command_import",
"command_info",
"command_query",
]
exclude-files = [
# This files is always for error impl boilerplate
"**/error.rs",
# Cannot test ureq's network requests now
"crates/lib/figma-fluent/src/data.rs",
# Just plain structs of parser api, no need to cover
"crates/phase/loading/src/api.rs",
# Experimental + infallible
"crates/lib/metrics/**/*.rs",
# Experimental + platform specific
"crates/lib/auth/**/*.rs",
# Only API, models, and mappers
"crates/lib/image_vector/**/*.rs",
]
out = ["Html", "Xml"]