You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@heron.apache.org by hu...@apache.org on 2018/08/21 22:27:46 UTC

[incubator-heron] branch master updated: enablebypassintegrationtests (#2997)

This is an automated email from the ASF dual-hosted git repository.

huijun pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-heron.git


The following commit(s) were added to refs/heads/master by this push:
     new 6748ecd  enablebypassintegrationtests (#2997)
6748ecd is described below

commit 6748ecd5c40f882216b974bfc10eff1becdd5811
Author: bed debug <hu...@users.noreply.github.com>
AuthorDate: Tue Aug 21 15:27:43 2018 -0700

    enablebypassintegrationtests (#2997)
---
 scripts/travis/ci.sh | 12 ++++++++----
 1 file changed, 8 insertions(+), 4 deletions(-)

diff --git a/scripts/travis/ci.sh b/scripts/travis/ci.sh
index 8262e50..5d7070f 100755
--- a/scripts/travis/ci.sh
+++ b/scripts/travis/ci.sh
@@ -34,9 +34,13 @@ ${DIR}/check.sh
 #(cd website && make travis-site)
 #end_timer "$T"
 
-T="${DIR}/test.sh"
-start_timer "$T"
-${DIR}/test.sh
-end_timer "$T"
+if [ -z ${DISABLE_INTEGRATION_TESTS+x} ]; then
+  T="${DIR}/test.sh"
+  start_timer "$T"
+  ${DIR}/test.sh
+  end_timer "$T"
+else
+  echo "bypass integration tests"
+fi
 
 print_timer_summary