diff --git a/tests/bash/01_virtualservices.sh b/tests/bash/01_virtualservices.sh
index 47267cdba83ff3ece46f8367946906d28ea2fad8..cc9028563f8a996eb2d02c69f4de81a17e12979e 100755
--- a/tests/bash/01_virtualservices.sh
+++ b/tests/bash/01_virtualservices.sh
@@ -1,14 +1,14 @@
 #!/usr/bin/env bash
 
 # exit on error
-set -e
+# set -e
 
 # Populate /etc/hosts
 ip=$(kubectl -n istio-system get service istio-ingressgateway -o jsonpath='{.status.loadBalancer.ingress[0].ip}')
 
 echo "Checking "
 
-hosts=`kubectl get vs -A -o jsonpath="{ .items[*].spec.hosts[*] }"`
+hosts=`kubectl get virtualservices -A -o jsonpath="{ .items[*].spec.hosts[*] }"`
 for host in $hosts; do
     echo "$ip $host" >> /etc/hosts
     curl -svv https://$host/ > /dev/null
diff --git a/tests/bash/02_non_ironbank.sh b/tests/bash/02_non_ironbank.sh
index 944903c52353d54bbe94133ae67e9cb27332ebc3..8f8e4591123e0168941680b21567c57f274092ea 100755
--- a/tests/bash/02_non_ironbank.sh
+++ b/tests/bash/02_non_ironbank.sh
@@ -1,7 +1,7 @@
 #!/usr/bin/env bash
 
 # exit on error
-set -e
+# set -e
 
 # Quick check for non iron bank images
 echo "Showing images not from ironbank:"
diff --git a/tests/bash/03_cypress.sh b/tests/bash/03_cypress.sh2
similarity index 100%
rename from tests/bash/03_cypress.sh
rename to tests/bash/03_cypress.sh2