diff options
author | Douwe Maan <douwe@gitlab.com> | 2015-12-09 10:51:01 +0100 |
---|---|---|
committer | Douwe Maan <douwe@gitlab.com> | 2015-12-09 10:51:01 +0100 |
commit | ae0b9017315b38dd42b4a1c9b6fb1daa78fee28a (patch) | |
tree | 9e6bbb38d25c1eadad154740ecd54d2def33ff5f /lib/tasks/spec.rake | |
parent | 1e8d703a854b372b12a2ad41b5e54d2abc028f74 (diff) | |
download | gitlab-ce-ae0b9017315b38dd42b4a1c9b6fb1daa78fee28a.tar.gz |
Split up specs more
Diffstat (limited to 'lib/tasks/spec.rake')
-rw-r--r-- | lib/tasks/spec.rake | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/lib/tasks/spec.rake b/lib/tasks/spec.rake index 365ff2defd4..049e17e6c11 100644 --- a/lib/tasks/spec.rake +++ b/lib/tasks/spec.rake @@ -19,6 +19,15 @@ namespace :spec do run_commands(cmds) end + desc 'GitLab | Rspec | Run model specs' + task :models do + cmds = [ + %W(rake gitlab:setup), + %W(rspec spec --tag @models) + ] + run_commands(cmds) + end + desc 'GitLab | Rspec | Run benchmark specs' task :benchmark do cmds = [ @@ -32,7 +41,7 @@ namespace :spec do task :other do cmds = [ %W(rake gitlab:setup), - %W(rspec spec --tag ~@api --tag ~@feature --tag ~@benchmark) + %W(rspec spec --tag ~@api,~@feature,~@models,~@benchmark) ] run_commands(cmds) end |