summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-11-04 14:21:12 +0200
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-11-04 14:21:12 +0200
commitb40ff1e06ee21e1b0c880fbe470256ab03c0a30b (patch)
treef7752916ccf5fbaaec159e4fff8d36bb01713da4
parent7b0f72d38eb02e28f1fa952adbff2f784deceb21 (diff)
downloadgitlab-ce-b40ff1e06ee21e1b0c880fbe470256ab03c0a30b.tar.gz
Add db:setup to rake gitlab:test
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
-rw-r--r--lib/tasks/gitlab/test.rake2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tasks/gitlab/test.rake b/lib/tasks/gitlab/test.rake
index 03b3fc5ea20..aa2510d93f7 100644
--- a/lib/tasks/gitlab/test.rake
+++ b/lib/tasks/gitlab/test.rake
@@ -1,4 +1,4 @@
namespace :gitlab do
desc "GITLAB | Run both spinach and rspec"
- task test: ['spinach', 'spec']
+ task test: ['db:setup', 'spinach', 'spec']
end