Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix toml #1672

Merged
merged 2 commits into from
Dec 31, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions tarpaulin.toml
Original file line number Diff line number Diff line change
Expand Up @@ -98,14 +98,14 @@ target-dir = "./target"
# Run the tests without accessing the network (offline mode).
offline = false

# Cargo subcommand to run; options are "test" or "build".
command = "test"
# Cargo subcommand to run; options are "Test" or "Build".
command = "Test"

# Types of tests to collect coverage for. For example: ["unit", "integration"]
run-types = ["unit"]
# Types of tests to collect coverage for. For example: ["Lib", "AllTargets", "Benchmarks", "Bins", "Examples", "Doctests", "Tests"]
run-types = ["AllTargets"]

# List of packages to include when building the target project.
packages = ["my_package"]
packages = []

# List of packages to exclude from testing.
exclude = []
Expand Down Expand Up @@ -156,7 +156,7 @@ no-fail-fast = false
avoid-cfg-tarpaulin = false

# Colouring of logs in the terminal output (e.g., "auto", "always", "never").
color = "auto"
color = "Auto"

# Follow traced executables down through function calls.
follow-exec = true
Expand Down Expand Up @@ -189,4 +189,4 @@ profraw-folder = "./target/profraw"
fail-immediately = false

# Log to stderr instead of the default output.
stderr = false
stderr = false
Loading