diff --git a/bacon.toml b/bacon.toml index 9e9e82362080..5e8415c743c6 100644 --- a/bacon.toml +++ b/bacon.toml @@ -3,9 +3,9 @@ default_job = "check" # PRQL additions -[jobs.test-rust-fast] +[jobs.test-fast] command = ['cargo', 'insta', 'test', '--accept', "--color=always", "-p=prql-compiler", "--lib"] -[jobs.test-rust] +[jobs.test] command = ['cargo', 'insta', 'test', '--accept', "--color=always"] # Standard tasks @@ -24,11 +24,6 @@ command = ["cargo", "clippy", "--all-targets", "--color", "always"] need_stdout = false watch = ["tests", "benches", "examples"] -[jobs.test] -command = ["cargo", "test", "--color", "always"] -need_stdout = true -watch = ["tests"] - [jobs.doc] command = ["cargo", "doc", "--color", "always", "--no-deps"] need_stdout = false @@ -59,7 +54,6 @@ need_stdout = true a = "job:check-all" c = "job:clippy" d = "job:doc-open" -# i for `insta` -i = "job:test-rust-fast" +f = "job:test-fast" r = "job:run" t = "job:test"