This is an automated email from the ASF dual-hosted git repository.
sarath pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/atlas.git
The following commit(s) were added to refs/heads/master by this push:
new 9f2e57f ATLAS-3234: Add option in Precommit-Atlas to fail at end
9f2e57f is described below
commit 9f2e57f0d2717c8fd5e32fceab3edf64ce921fa8
Author: Sarath Subramanian <[email protected]>
AuthorDate: Wed Jul 17 12:36:09 2019 -0700
ATLAS-3234: Add option in Precommit-Atlas to fail at end
---
dev-support/test-patch.sh | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/dev-support/test-patch.sh b/dev-support/test-patch.sh
index 2cc6062..9b10af4 100755
--- a/dev-support/test-patch.sh
+++ b/dev-support/test-patch.sh
@@ -603,6 +603,11 @@ buildAndInstall () {
MVN_GOALS+=" -DskipITs"
fi
+ if [[ $FAIL_AT_END == "true" ]]; then
+ echo "Fail at end flag set to true."
+ MVN_GOALS+=" --fail-at-end"
+ fi
+
echo "$MVN $MVN_GOALS"
$MVN $MVN_GOALS