Skip to content
This repository was archived by the owner on Jan 29, 2019. It is now read-only.

Commit 840e35e

Browse files
committed
Make test less flaky
1 parent 2c8dbb7 commit 840e35e

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

examples/release/BUILD

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ terraform_module_publisher(
66
prepublish_tests = [
77
"//...",
88
"//examples/test:k8s-e2e_integration_test",
9+
#"//examples/test:ecs-e2e_integration_test",
910
],
1011
published_modules = {
1112
"mymodule": "//examples/src:hello-world_k8s",

examples/test/e2e.sh

+12
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,18 @@ trap err_report ERR
66

77
source ${BUILD_WORKING_DIRECTORY:="."}/.rules_terraform/test_vars.sh
88

9+
while true; do
10+
if http_code=$(curl -s -o /dev/null -L -w "%{http_code}" "$SERVICE_URL"); then
11+
:
12+
fi
13+
if [ "$http_code" == "200" ]; then
14+
break
15+
else
16+
>&2 echo "Could not connect to server, waiting a bit.."
17+
sleep 2
18+
fi
19+
done
20+
921
until response=$(curl -sSL "$SERVICE_URL"); do
1022
>&2 echo "Could not connect to server, waiting a bit.."
1123
sleep 2

0 commit comments

Comments
 (0)