Skip to content

Commit

Permalink
Skip the code checking for now
Browse files Browse the repository at this point in the history
Signed-off-by: Joas Schilling <[email protected]>
  • Loading branch information
nickvergessen committed May 16, 2017
1 parent 7ec5847 commit f920dfe
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion autotest-checkers.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 6 additions & 0 deletions core/Command/App/CheckCode.php
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,12 @@ protected function configure() {
'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,
Expand Down

0 comments on commit f920dfe

Please sign in to comment.