Skip to content

Commit 1ae2a60

Browse files
committed
Add mutant to default rake task and pass --since main flag
1 parent c39f85f commit 1ae2a60

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Rakefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ end
8181

8282
desc "Run mutation testing with Mutant"
8383
task :mutant do
84-
system("bundle exec mutant run") || abort("Mutant failed!")
84+
system("bundle", "exec", "mutant", "run", "--since", "main") or abort("Mutant failed!")
8585
end
8686

87-
task default: %i[test rubocop verify_measurements steep]
87+
task default: %i[test mutant rubocop verify_measurements steep]

0 commit comments

Comments
 (0)