-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathtarpaulin.toml
More file actions
41 lines (39 loc) · 885 Bytes
/
tarpaulin.toml
File metadata and controls
41 lines (39 loc) · 885 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
32
33
34
35
36
37
38
39
40
41
# ==========================================
# ignore due to wasm incompatibility
# [cov_sv_publisher]
# name = "Fuel Streams Publisher Coverage Analysis"
# packages = [
# "sv-publisher"
# ]
# all-features = true
# run-types = [
# "Tests"
# ]
# timeout = "120s"
# color = "Always"
# locked = true
# count = true
# no-dead-code = true
# fail-immediately = true
# skip-clean = true
# engine = "Llvm"
#fail-under = 80
# ==========================================
[cov_fuel_streams_tests]
all-features = true
color = "Always"
count = true
engine = "Llvm"
fail-immediately = true
locked = true
name = "Fuel Data Systems Tests Coverage Analysis"
no-dead-code = true
packages = ["streams-tests"]
run-types = ["Lib", "Tests"]
skip-clean = true
timeout = "120s"
#fail-under = 80
# ==========================================
[report]
out = ["Html", "Xml"]
output-dir = "./cov-reports"