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
path: root/lib/tasks
diff options
context:
space:
mode:
authorSean McGivern <sean@mcgivern.me.uk>2017-04-28 16:21:45 +0300
committerSean McGivern <sean@mcgivern.me.uk>2017-04-28 16:21:45 +0300
commit31b87b8cab2c2daebb99657046e5d121b48499ad (patch)
tree4901b71ad54a369deacbffcc43b85ea2fe6c7dd2 /lib/tasks
parent0f0517d727ff9f7fac911f88b6d6619cffe262d7 (diff)
parent3532b8db712d1d6daa0a656b0fde317af9b8ae53 (diff)
Merge branch 'grpc-fork-tests' into 'master'
Unicorn worker termination tests See merge request !10818
Diffstat (limited to 'lib/tasks')
-rw-r--r--lib/tasks/brakeman.rake2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tasks/brakeman.rake b/lib/tasks/brakeman.rake
index 2301ec9b228..99b3168d9eb 100644
--- a/lib/tasks/brakeman.rake
+++ b/lib/tasks/brakeman.rake
@@ -2,7 +2,7 @@ desc 'Security check via brakeman'
task :brakeman do
# We get 0 warnings at level 'w3' but we would like to reach 'w2'. Merge
# requests are welcome!
- if system(*%w(brakeman --no-progress --skip-files lib/backup/repository.rb -w3 -z))
+ if system(*%w(brakeman --no-progress --skip-files lib/backup/repository.rb,app/controllers/unicorn_test_controller.rb -w3 -z))
puts 'Security check succeed'
else
puts 'Security check failed'