This is an automated email from the ASF dual-hosted git repository.
sai_boorlagadda pushed a commit to branch feature/GEODE-5212
in repository https://gitbox.apache.org/repos/asf/geode.git
The following commit(s) were added to refs/heads/feature/GEODE-5212 by this
push:
new 5090a5f run a single integration test
5090a5f is described below
commit 5090a5fd012f36e7501c5232512b686ebbf18105
Author: Sai Boorlagadda <[email protected]>
AuthorDate: Tue Jul 17 10:34:48 2018 -0700
run a single integration test
---
ci/scripts/test-run.sh | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/ci/scripts/test-run.sh b/ci/scripts/test-run.sh
index e441981..b45daef 100755
--- a/ci/scripts/test-run.sh
+++ b/ci/scripts/test-run.sh
@@ -140,6 +140,11 @@ pushd ${GEODE_BUILD}
echo "Running tests"
set -x
+ if [ "${GRADLE_TASK}" = "integrationTest" ]; then
+ GRADLE_TASK="geode-assembly:integrationTest"
+ GRADLE_SPECIAL_OPTIONS="--tests PdxBasedCrudControllerIntegrationTest"
+ fi
+
# ./gradlew --no-daemon -x javadoc -x spotlessCheck
:geode-assembly:acceptanceTest --tests
org.apache.geode.management.internal.cli.commands.PutCommandWithJsonTest
./gradlew ${PARALLEL_DUNIT} ${DUNIT_PARALLEL_FORKS} ${DUNIT_DOCKER_IMAGE} \
--system-prop "java.io.tmpdir=${TMPDIR}" ${DEFAULT_GRADLE_TASK_OPTIONS}
${GRADLE_TASK_OPTIONS} ${GRADLE_TASK}