Skip to content

Commit bbd501c

Browse files
authored
make verify.sh not quiet (#1488)
Some of our tests seem to still be flaking with timeout, eg https://travis-ci.org/GoogleCloudPlatform/google-cloud-java/jobs/185655553 Making the test not quiet should give us an idea of what's timing out.
1 parent 586bb2a commit bbd501c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

utilities/verify.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ if [ "${TRAVIS_PULL_REQUEST}" == "false" ]; then
1010
chmod 700 $TRAVIS_BUILD_DIR/signing-tools
1111
tar xvf $TRAVIS_BUILD_DIR/signing-tools.tar -C $TRAVIS_BUILD_DIR/signing-tools
1212
# Run verify
13-
mvn verify --quiet -Djava.util.logging.config.file=logging.properties -P release
13+
mvn verify -Djava.util.logging.config.file=logging.properties -P release
1414
else
15-
mvn verify --quiet -Djava.util.logging.config.file=logging.properties -DskipITs -P release
15+
mvn verify -Djava.util.logging.config.file=logging.properties -DskipITs -P release
1616
fi

0 commit comments

Comments
 (0)