Skip to content

Commit 8a18e40

Browse files
committed
Make dogfood tests run in release mode
1 parent 89160b6 commit 8a18e40

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

clippy_dev/src/dogfood.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ pub fn dogfood(fix: bool, allow_dirty: bool, allow_staged: bool) {
1010
cmd.current_dir(clippy_project_root())
1111
.args(["test", "--test", "dogfood"])
1212
.args(["--features", "internal"])
13-
.args(["--", "dogfood_clippy"]);
13+
.args(["--", "dogfood_clippy"])
14+
.arg("--release");
1415

1516
let mut dogfood_args = Vec::new();
1617
if fix {

0 commit comments

Comments
 (0)