We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a35c91 commit 1dfd9e8Copy full SHA for 1dfd9e8
run-its.sh
@@ -1,4 +1,13 @@
1
#!/bin/bash
2
+# Run Integration Tests
3
+# Can be called either from the top-level directory or from any of
4
+# the language-specific images.
5
+#
6
+# $ sh run-its.sh
7
+# $ (cd go; sh ../run-its.sh)
8
9
+# Integration tests are set up as a set of Jobs. This script launches
10
+# a set of Pods and the Jobs, and then waits for the Jobs to complete.
11
12
set -euo pipefail
13
@@ -22,6 +31,7 @@ while [ $jobcount -eq 0 -o $jobcount -ne $(countTestJobs) ]; do
22
31
jobcount=$(countTestJobs)
23
32
sleep 5
24
33
done
34
+
25
35
echo ">> Monitoring for test job completion [$(date)]"
26
36
kubectl wait --for=condition=complete job.batch \
27
37
-l project=container-debug-support,type=integration-test
0 commit comments