summaryrefslogtreecommitdiffstats
path: root/bacon.toml
diff options
context:
space:
mode:
authorCanop <cano.petrole@gmail.com>2020-11-16 20:07:45 +0100
committerCanop <cano.petrole@gmail.com>2020-11-16 20:07:45 +0100
commit75e76656a55209efc627c9f8bf3840b56e75d794 (patch)
treebd34091ad3045907a7ab0ab89cec485b3ffa4c86 /bacon.toml
parent8c85bb52db147ded1c2219e42980f992834ae518 (diff)
refactor: crop moved to termimad
Diffstat (limited to 'bacon.toml')
-rw-r--r--bacon.toml8
1 files changed, 6 insertions, 2 deletions
diff --git a/bacon.toml b/bacon.toml
index 824f115..5928b6d 100644
--- a/bacon.toml
+++ b/bacon.toml
@@ -8,9 +8,13 @@ default_job = "check"
[jobs.check]
command = ["cargo", "check", "--color", "always"]
+need_stdout = false
[jobs.clippy]
command = ["cargo", "clippy", "--color", "always"]
+need_stdout = false
+
+[jobs.test]
+command = ["cargo", "test", "--color", "always"]
+need_stdout = true
-[jobs.check-win]
-command = ["cargo", "check", "--target", "x86_64-pc-windows-gnu", "--color", "always"]