default_job = "check"
[jobs.check]
command = ["cargo", "check", "--color", "always"]
need_stdout = false
[jobs.check-all]
command = ["cargo", "check", "--all-targets", "--color", "always"]
need_stdout = false
[jobs.clippy]
command = ["cargo", "clippy", "--color", "always"]
need_stdout = false
[jobs.clippy-all]
command = ["cargo", "clippy", "--all-targets", "--color", "always"]
need_stdout = false
[jobs.run]
command = [
"cargo",
"run",
"--color",
"always",
]
need_stdout = true
allow_warnings = true
background = true
[keybindings]
c = "job:clippy-all"
1 = "job:test-spec-no-watch"
2 = "job:test-staging-no-watch"
3 = "job:test-all-no-watch"
4 = "job:test-spec"
5 = "job:test-staging"
6 = "job:test-all"
[jobs.test-spec]
command = [
"cargo",
"test",
"-p",
"ezno-checker-specification",
"--color",
"always",
"--",
"--color",
"always",
]
need_stdout = true
watch = ["checker", "parser"]
[jobs.test-staging]
command = [
"cargo",
"test",
"-p",
"ezno-checker-specification",
"-F",
"staging",
"--color",
"always",
"--",
"--color",
"always",
]
need_stdout = true
watch = ["checker", "parser"]
[jobs.test-all]
command = [
"cargo",
"test",
"-p",
"ezno-checker-specification",
"-F",
"all",
"--color",
"always",
"--",
"--color",
"always",
]
need_stdout = true
watch = ["checker", "parser"]
[jobs.test-spec-no-watch]
command = [
"cargo",
"test",
"-p",
"ezno-checker-specification",
"--color",
"always",
"--",
"--color",
"always",
]
need_stdout = true
default_watch = false
[jobs.test-staging-no-watch]
command = [
"cargo",
"test",
"-p",
"ezno-checker-specification",
"-F",
"staging",
"--color",
"always",
"--",
"--color",
"always",
]
need_stdout = true
default_watch = false
[jobs.test-all-no-watch]
command = [
"cargo",
"test",
"-p",
"ezno-checker-specification",
"-F",
"all",
"--color",
"always",
"--",
"--color",
"always",
]
need_stdout = true
default_watch = false