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>2015-03-03 05:22:37 +0300
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2015-03-03 05:22:37 +0300
commitbe165b18d0f3713a888767550ef66917c5a389ab (patch)
tree6449082a3fb1a5f2c4e82f3bbf79657ba279d3a7 /lib/tasks/test.rake
parent16e899ca8b44a87883464ada507f521d02548fe2 (diff)
Add brakeman and jasmine
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 3ea9290a814..a39d9649876 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 => [:rubocop, :spinach, :spec, 'coveralls:push']
+ task :test_ci => [:rubocop, :brakeman, 'jasmine:ci', :spinach, :spec, 'coveralls:push']
end