diff options
author | Douwe Maan <douwe@gitlab.com> | 2015-12-09 11:09:25 +0100 |
---|---|---|
committer | Douwe Maan <douwe@gitlab.com> | 2015-12-09 11:09:25 +0100 |
commit | 7a5e77c0a0591ff5d121f93deced27b798ddbee3 (patch) | |
tree | 98bcafaa939aba72a5453b9f50167cb38abf45cb | |
parent | ae0b9017315b38dd42b4a1c9b6fb1daa78fee28a (diff) | |
download | gitlab-ce-7a5e77c0a0591ff5d121f93deced27b798ddbee3.tar.gz |
Fix rspec tag syntax
-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 049e17e6c11..343e4b63524 100644 --- a/lib/tasks/spec.rake +++ b/lib/tasks/spec.rake @@ -41,7 +41,7 @@ namespace :spec do task :other do cmds = [ %W(rake gitlab:setup), - %W(rspec spec --tag ~@api,~@feature,~@models,~@benchmark) + %W(rspec spec --tag ~@api --tag ~@feature --tag ~@models --tag ~@benchmark) ] run_commands(cmds) end |