Browse Source
Skip the code checking for now
Signed-off-by: Joas Schilling <coding@schilljs.com>
pull/4767/head
Joas Schilling
9 years ago
No known key found for this signature in database
GPG Key ID: E166FD8976B3BAC8
2 changed files with
7 additions and
1 deletions
-
autotest-checkers.sh
-
core/Command/App/CheckCode.php
|
|
|
@ -29,7 +29,7 @@ for app in $(find "apps/" -mindepth 1 -maxdepth 1 -type d -printf '%f\n'); do |
|
|
|
[ "$app" == "updatenotification" ] || \ |
|
|
|
[ "$app" == "user_ldap" ] |
|
|
|
then |
|
|
|
./occ app:check-code -c strong-comparison "$app" |
|
|
|
./occ app:check-code --skip-checkers "$app" |
|
|
|
else |
|
|
|
./occ app:check-code "$app" |
|
|
|
fi |
|
|
|
|
|
|
|
@ -71,6 +71,12 @@ class CheckCode extends Command implements CompletionAwareInterface { |
|
|
|
'enable the specified checker(s)', |
|
|
|
[ 'private', 'deprecation', 'strong-comparison' ] |
|
|
|
) |
|
|
|
->addOption( |
|
|
|
'--skip-checkers', |
|
|
|
null, |
|
|
|
InputOption::VALUE_NONE, |
|
|
|
'skips the the code checkers to only check info.xml, language and database schema' |
|
|
|
) |
|
|
|
->addOption( |
|
|
|
'--skip-validate-info', |
|
|
|
null, |
|
|
|
|