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
path: root/lib/tasks
diff options
context:
space:
mode:
authorRobert Speicher <robert@gitlab.com>2016-07-27 19:42:07 +0300
committerRobert Speicher <robert@gitlab.com>2016-07-27 19:42:07 +0300
commit37306971903ec06e7e3b12dbad598e6555c2b2c1 (patch)
tree5869254558516e8118ce0f4e105f3dc457af09a3 /lib/tasks
parentac7f3e6a9201778e796394d54f86f45f7d789dc9 (diff)
parentf00dc0fcae6cf482c1bf60065bd2c1ecfaa9748d (diff)
Merge branch 'simple-cov' into 'master'
Generate coverage report from whole test suite Extends our CI plan to merge all coverage results and generate HTML report. See merge request !5018
Diffstat (limited to 'lib/tasks')
-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 21c0e5f1d41..d3dcbd2c29b 100644
--- a/lib/tasks/test.rake
+++ b/lib/tasks/test.rake
@@ -7,5 +7,5 @@ end
unless Rails.env.production?
desc "GitLab | Run all tests on CI with simplecov"
- task test_ci: [:rubocop, :brakeman, 'teaspoon', :spinach, :spec]
+ task test_ci: [:rubocop, :brakeman, :teaspoon, :spinach, :spec]
end