Skip to content

Commit 3b0c980

Browse files
committed
Comment out tests that require earlier WLST operations
1 parent dfd4b54 commit 3b0c980

File tree

1 file changed

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

1 file changed

+9
-3
lines changed

src/integration-tests/bash/run.sh

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -762,7 +762,9 @@ function verify_domain {
762762
verify_domain_created $DOM_KEY $OP_KEY
763763
verify_managed_servers_ready $DOM_KEY
764764

765-
verify_webapp_load_balancing $DOM_KEY 2
765+
if [ ! "${WERCKER}" = "true" ]; then
766+
verify_webapp_load_balancing $DOM_KEY 2
767+
fi
766768
verify_admin_server_ext_service $DOM_KEY
767769
}
768770

@@ -1654,14 +1656,18 @@ function test_cluster_scale {
16541656
kubectl apply -f $domainCR
16551657

16561658
verify_service_and_pod_created $DOM_KEY $OP_KEY 3
1657-
verify_webapp_load_balancing $DOM_KEY 3
1659+
if [ ! "${WERCKER}" = "true" ]; then
1660+
verify_webapp_load_balancing $DOM_KEY 3
1661+
fi
16581662

16591663
trace "test cluster scale-down from 3 to 2"
16601664
sed -i -e "0,/replicas:/s/replicas:.*/replicas: 2/" $domainCR
16611665
kubectl apply -f $domainCR
16621666

16631667
verify_service_and_pod_deleted $DOM_KEY 3
1664-
verify_webapp_load_balancing $DOM_KEY 2
1668+
if [ ! "${WERCKER}" = "true" ]; then
1669+
verify_webapp_load_balancing $DOM_KEY 2
1670+
fi
16651671
}
16661672

16671673
function test_create_domain_on_exist_dir {

0 commit comments

Comments
 (0)