Skip to content

Commit dfd4b54

Browse files
committed
Temporarily skip WLST related tests on Wercker
1 parent d2b875c commit dfd4b54

File tree

1 file changed

+9
-5
lines changed
  • src/integration-tests/bash

1 file changed

+9
-5
lines changed

src/integration-tests/bash/run.sh

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -740,9 +740,11 @@ function test_domain_creation {
740740
verify_domain_created $DOM_KEY $OP_KEY
741741
verify_managed_servers_ready $DOM_KEY
742742

743-
#deploy_webapp_via_REST $DOM_KEY
744-
deploy_webapp_via_WLST $DOM_KEY
745-
verify_webapp_load_balancing $DOM_KEY 2
743+
if [ ! "${WERCKER}" = "true" ]; then
744+
#deploy_webapp_via_REST $DOM_KEY
745+
deploy_webapp_via_WLST $DOM_KEY
746+
verify_webapp_load_balancing $DOM_KEY 2
747+
fi
746748

747749
verify_admin_server_ext_service $DOM_KEY
748750

@@ -1316,8 +1318,10 @@ function verify_service_and_pod_created {
13161318
fail "ERROR: pod $POD_NAME is not ready, exiting!"
13171319
fi
13181320

1319-
if [ "${IS_ADMIN_SERVER}" = "true" ]; then
1320-
verify_wlst_access $DOM_KEY
1321+
if [ ! "${WERCKER}" = "true" ]; then
1322+
if [ "${IS_ADMIN_SERVER}" = "true" ]; then
1323+
verify_wlst_access $DOM_KEY
1324+
fi
13211325
fi
13221326
}
13231327

0 commit comments

Comments
 (0)