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/gitlab/test.rake')
-rw-r--r--lib/tasks/gitlab/test.rake16
1 files changed, 0 insertions, 16 deletions
diff --git a/lib/tasks/gitlab/test.rake b/lib/tasks/gitlab/test.rake
deleted file mode 100644
index b4c0ae3ff79..00000000000
--- a/lib/tasks/gitlab/test.rake
+++ /dev/null
@@ -1,16 +0,0 @@
-namespace :gitlab do
- desc "GITLAB | Run all tests"
- task :test do
- cmds = [
- %W(rake brakeman),
- %W(rake rubocop),
- %W(rake spinach),
- %W(rake spec),
- %W(rake jasmine:ci)
- ]
-
- cmds.each do |cmd|
- system({'RAILS_ENV' => 'test', 'force' => 'yes'}, *cmd) or raise("#{cmd} failed!")
- end
- end
-end