summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTakuya Noguchi <takninnovationresearch@gmail.com>2018-04-03 07:45:27 +0900
committerTakuya Noguchi <takninnovationresearch@gmail.com>2018-04-03 07:54:30 +0900
commit95d52c9faf23b519823bec4e5b32df54a59b22c1 (patch)
treeb05b103e73b599523cb2cf72305ff42990329e0b
parentf2e6a7388c5011786b92cfca5c1052e366c5b514 (diff)
downloadgitlab-ce-95d52c9faf23b519823bec4e5b32df54a59b22c1.tar.gz
Remove test_ci rake task
Signed-off-by: Takuya Noguchi <takninnovationresearch@gmail.com>
-rw-r--r--changelogs/unreleased/44902-remove-rake-test-ci.yml5
-rw-r--r--lib/tasks/test.rake5
2 files changed, 5 insertions, 5 deletions
diff --git a/changelogs/unreleased/44902-remove-rake-test-ci.yml b/changelogs/unreleased/44902-remove-rake-test-ci.yml
new file mode 100644
index 00000000000..459de1c2ca3
--- /dev/null
+++ b/changelogs/unreleased/44902-remove-rake-test-ci.yml
@@ -0,0 +1,5 @@
+---
+title: Remove test_ci rake task
+merge_request: 18139
+author: Takuya Noguchi
+type: other
diff --git a/lib/tasks/test.rake b/lib/tasks/test.rake
index 3e01f91d32c..b52af81fc16 100644
--- a/lib/tasks/test.rake
+++ b/lib/tasks/test.rake
@@ -4,8 +4,3 @@ desc "GitLab | Run all tests"
task :test do
Rake::Task["gitlab:test"].invoke
end
-
-unless Rails.env.production?
- desc "GitLab | Run all tests on CI with simplecov"
- task test_ci: [:rubocop, :brakeman, :karma, :spinach, :spec]
-end