diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2015-03-02 18:22:37 -0800 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2015-03-02 18:22:37 -0800 |
commit | be165b18d0f3713a888767550ef66917c5a389ab (patch) | |
tree | 6449082a3fb1a5f2c4e82f3bbf79657ba279d3a7 | |
parent | 16e899ca8b44a87883464ada507f521d02548fe2 (diff) | |
download | gitlab-ce-be165b18d0f3713a888767550ef66917c5a389ab.tar.gz |
Add brakeman and jasmine
-rw-r--r-- | CHANGELOG | 1 | ||||
-rw-r--r-- | lib/tasks/test.rake | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/CHANGELOG b/CHANGELOG index 84bdea30979..6a28772097e 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -15,6 +15,7 @@ v 7.9.0 (unreleased) - Fix mass-unassignment of issues (Robert Speicher) - Allow user confirmation to be skipped for new users via API - Add a service to send updates to an Irker gateway (Romain Coltel) + - Add brakeman (security scanner for Ruby on Rails) v 7.8.1 - Fix run of custom post receive hooks 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 |