chore: remove --color always flags from bacon.toml (#1502)

No longer necessary as of bacon 3.3
This commit is contained in:
Josh McKinney 2024-11-19 10:21:12 -08:00 committed by GitHub
parent a41c97b413
commit e4e95bcecf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -8,26 +8,17 @@
default_job = "check" default_job = "check"
[jobs.check] [jobs.check]
command = ["cargo", "check", "--all-features", "--color", "always"] command = ["cargo", "check", "--all-features"]
need_stdout = false need_stdout = false
[jobs.check-all] [jobs.check-all]
command = [ command = ["cargo", "check", "--all-targets", "--all-features"]
"cargo",
"check",
"--all-targets",
"--all-features",
"--color",
"always",
]
need_stdout = false need_stdout = false
[jobs.check-crossterm] [jobs.check-crossterm]
command = [ command = [
"cargo", "cargo",
"check", "check",
"--color",
"always",
"--all-targets", "--all-targets",
"--no-default-features", "--no-default-features",
"--features", "--features",
@ -39,8 +30,6 @@ need_stdout = false
command = [ command = [
"cargo", "cargo",
"check", "check",
"--color",
"always",
"--all-targets", "--all-targets",
"--no-default-features", "--no-default-features",
"--features", "--features",
@ -52,8 +41,6 @@ need_stdout = false
command = [ command = [
"cargo", "cargo",
"check", "check",
"--color",
"always",
"--all-targets", "--all-targets",
"--no-default-features", "--no-default-features",
"--features", "--features",
@ -62,34 +49,15 @@ command = [
need_stdout = false need_stdout = false
[jobs.clippy] [jobs.clippy]
command = ["cargo", "clippy", "--all-targets", "--color", "always"] command = ["cargo", "clippy", "--all-targets"]
need_stdout = false need_stdout = false
[jobs.test] [jobs.test]
command = [ command = ["cargo", "test", "--all-features"]
"cargo",
"test",
"--all-features",
"--color",
"always",
"--",
"--color",
"always", # see https://github.com/Canop/bacon/issues/124
]
need_stdout = true need_stdout = true
[jobs.test-unit] [jobs.test-unit]
command = [ command = ["cargo", "test", "--lib", "--all-features"]
"cargo",
"test",
"--lib",
"--all-features",
"--color",
"always",
"--",
"--color",
"always", # see https://github.com/Canop/bacon/issues/124
]
need_stdout = true need_stdout = true
[jobs.doc] [jobs.doc]
@ -100,8 +68,6 @@ command = [
"-Zunstable-options", "-Zunstable-options",
"-Zrustdoc-scrape-examples", "-Zrustdoc-scrape-examples",
"--all-features", "--all-features",
"--color",
"always",
"--no-deps", "--no-deps",
] ]
env.RUSTDOCFLAGS = "--cfg docsrs" env.RUSTDOCFLAGS = "--cfg docsrs"
@ -117,8 +83,6 @@ command = [
"-Zunstable-options", "-Zunstable-options",
"-Zrustdoc-scrape-examples", "-Zrustdoc-scrape-examples",
"--all-features", "--all-features",
"--color",
"always",
"--no-deps", "--no-deps",
"--open", "--open",
] ]
@ -134,8 +98,6 @@ command = [
"--output-path", "--output-path",
"target/lcov.info", "target/lcov.info",
"--all-features", "--all-features",
"--color",
"always",
] ]
[jobs.coverage-unit-tests-only] [jobs.coverage-unit-tests-only]
@ -147,8 +109,6 @@ command = [
"target/lcov.info", "target/lcov.info",
"--lib", "--lib",
"--all-features", "--all-features",
"--color",
"always",
] ]
[jobs.hack] [jobs.hack]
@ -160,8 +120,6 @@ command = [
"--each-feature", "--each-feature",
# "--all-targets", # "--all-targets",
"--workspace", "--workspace",
"--color",
"always",
] ]
# You may define here keybindings that would be specific to # You may define here keybindings that would be specific to