Browse Source

AMBARI-13362: Hadoop QA CI (aka test-patch) is skipping ambari-web unit testing (jaoki)

jaoki 9 years ago
parent
commit
5cd87b03cb
1 changed files with 1 additions and 1 deletions
  1. 1 1
      dev-support/test-patch.sh

+ 1 - 1
dev-support/test-patch.sh

@@ -775,7 +775,7 @@ findModules () {
   CHANGED_MODULES=""
   for module in $(cat $TMP_MODULES | sort | uniq); do
     $GREP "<packaging>pom</packaging>" $module/pom.xml > /dev/null
-    if [ "$?" != 0 ]; then
+    if [ "$?" != 0 ] || [ "$module" == "ambari-web" ]; then # ambari-web is packing = pom but has unit tests
       CHANGED_MODULES="$CHANGED_MODULES $module"
     fi
   done