summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYorick Peterse <yorickpeterse@gmail.com>2015-10-05 18:01:28 +0200
committerYorick Peterse <yorickpeterse@gmail.com>2015-10-05 18:01:28 +0200
commit8a78c4ea06c7bd3a4c6a0ea9943891327b90cd35 (patch)
tree93025d4ed2f7ac5fcf98ca973c05f59e8593d41c
parent471671f80d123a926d147518f395136b22d0e5fe (diff)
downloadgitlab-ce-8a78c4ea06c7bd3a4c6a0ea9943891327b90cd35.tar.gz
Exclude benchmarks from the spec Rake task
-rw-r--r--lib/tasks/spec.rake2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tasks/spec.rake b/lib/tasks/spec.rake
index 3ae5c250694..365ff2defd4 100644
--- a/lib/tasks/spec.rake
+++ b/lib/tasks/spec.rake
@@ -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