HBASE-15195 Don't run findbugs on hbase-it; it has nothing in src/main/java

This commit is contained in:
stack 2016-01-31 11:07:21 -04:00
parent 9ec408e25b
commit 9955118995
1 changed files with 4 additions and 1 deletions

View File

@ -78,9 +78,12 @@ function personality_modules
if [[ ${testtype} = findbugs ]]; then
for module in ${CHANGED_MODULES}; do
# skip findbugs on hbase-shell
# skip findbugs on hbase-shell and hbase-it. hbase-it has nothing
# in src/main/java where findbugs goes to look
if [[ ${module} == hbase-shell ]]; then
continue
elif [[ ${module} == hbase-it ]]; then
continue
else
# shellcheck disable=SC2086
personality_enqueue_module ${module} ${extra}