You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by je...@apache.org on 2019/04/16 17:31:37 UTC

[geode] branch develop updated: GEODE-6634: Fix parallel option for repeatTest (#3443)

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

jensdeppe pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode.git


The following commit(s) were added to refs/heads/develop by this push:
     new 016cf13  GEODE-6634: Fix parallel option for repeatTest (#3443)
016cf13 is described below

commit 016cf134b1e5762260d887be7bb8f8872cf5c306
Author: Jens Deppe <jd...@pivotal.io>
AuthorDate: Tue Apr 16 10:31:16 2019 -0700

    GEODE-6634: Fix parallel option for repeatTest (#3443)
---
 ci/pipelines/shared/jinja.variables.yml | 1 +
 ci/scripts/repeat-new-tests.sh          | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/ci/pipelines/shared/jinja.variables.yml b/ci/pipelines/shared/jinja.variables.yml
index 345e111..7e74959 100644
--- a/ci/pipelines/shared/jinja.variables.yml
+++ b/ci/pipelines/shared/jinja.variables.yml
@@ -121,6 +121,7 @@ tests:
   GRADLE_TASK: repeatTest
   execute_test_timeout: 2h15m
   PARALLEL_DUNIT: "true"
+  PARALLEL_GRADLE: "false"
 - name: "WindowsAcceptance"
   CPUS: "16"
   RAM: "64"
diff --git a/ci/scripts/repeat-new-tests.sh b/ci/scripts/repeat-new-tests.sh
index 64c0ffc..4a54062 100755
--- a/ci/scripts/repeat-new-tests.sh
+++ b/ci/scripts/repeat-new-tests.sh
@@ -91,7 +91,7 @@ append_to_test_targets "repeatUpgradeTest" "$UPGRADE_TEST_CHANGES"
 #append_to_test_targets "repeatAcceptanceTest" "$ACCEPTANCE_TEST_CHANGES"
 
 export GRADLE_TASK="compileTestJava compileIntegrationTestJava compileDistributedTestJava $TEST_TARGETS"
-export GRADLE_TASK_OPTIONS="--no-parallel -Prepeat=50 -PfailOnNoMatchingTests=false"
+export GRADLE_TASK_OPTIONS="-Prepeat=50 -PfailOnNoMatchingTests=false"
 
 echo "GRADLE_TASK_OPTIONS=${GRADLE_TASK_OPTIONS}"
 echo "GRADLE_TASK=${GRADLE_TASK}"