diff options
author | Yorick Peterse <yorickpeterse@gmail.com> | 2015-10-05 18:01:28 +0200 |
---|---|---|
committer | Yorick Peterse <yorickpeterse@gmail.com> | 2015-10-05 18:01:28 +0200 |
commit | 8a78c4ea06c7bd3a4c6a0ea9943891327b90cd35 (patch) | |
tree | 93025d4ed2f7ac5fcf98ca973c05f59e8593d41c /lib/tasks | |
parent | 471671f80d123a926d147518f395136b22d0e5fe (diff) | |
download | gitlab-ce-8a78c4ea06c7bd3a4c6a0ea9943891327b90cd35.tar.gz |
Exclude benchmarks from the spec Rake task
Diffstat (limited to 'lib/tasks')
-rw-r--r-- | lib/tasks/spec.rake | 2 |
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 |