Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-09-30 16:55:03 +0400
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-09-30 16:55:03 +0400
commit6fa81e5d58b29f485a449cf896e0bb31d83a6ad1 (patch)
tree4b2ac63fd0918f8ab0a708cd1d15a4859ef876eb /lib/tasks/test.rake
parent99a7bf882328ac8a0664c1be88593828a20f8fb5 (diff)
Add rspec to test_ci
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Diffstat (limited to 'lib/tasks/test.rake')
-rw-r--r--lib/tasks/test.rake2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tasks/test.rake b/lib/tasks/test.rake
index 4a44bcb2a93..c868e1c4314 100644
--- a/lib/tasks/test.rake
+++ b/lib/tasks/test.rake
@@ -9,5 +9,5 @@ unless Rails.env.production?
require 'coveralls/rake/task'
Coveralls::RakeTask.new
desc "GITLAB | Run all tests on CI with simplecov"
- task :test_ci => [:spinach, 'coveralls:push']
+ task :test_ci => [:spec, :spinach, 'coveralls:push']
end