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:
Diffstat (limited to 'lib/tasks/test.rake')
-rw-r--r--lib/tasks/test.rake13
1 files changed, 0 insertions, 13 deletions
diff --git a/lib/tasks/test.rake b/lib/tasks/test.rake
deleted file mode 100644
index a39d9649876..00000000000
--- a/lib/tasks/test.rake
+++ /dev/null
@@ -1,13 +0,0 @@
-Rake::Task["test"].clear
-
-desc "GITLAB | Run all tests"
-task :test do
- Rake::Task["gitlab:test"].invoke
-end
-
-unless Rails.env.production?
- require 'coveralls/rake/task'
- Coveralls::RakeTask.new
- desc "GITLAB | Run all tests on CI with simplecov"
- task :test_ci => [:rubocop, :brakeman, 'jasmine:ci', :spinach, :spec, 'coveralls:push']
-end