Exclude benchmarks from the spec Rake task

This commit is contained in:
Yorick Peterse 2015-10-05 18:01:28 +02:00
parent 471671f80d
commit 8a78c4ea06
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ desc "GitLab | Run specs"
task :spec do
cmds = [
%W(rake gitlab:setup),
%W(rspec spec),
%W(rspec spec --tag ~@benchmark),
]
run_commands(cmds)
end