Skip to content

Commit 1dfd9e8

Browse files
authored
doc: add some minor doc to run-its.sh (#96)
1 parent 3a35c91 commit 1dfd9e8

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

run-its.sh

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,13 @@
11
#!/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.
211

312
set -euo pipefail
413

@@ -22,6 +31,7 @@ while [ $jobcount -eq 0 -o $jobcount -ne $(countTestJobs) ]; do
2231
jobcount=$(countTestJobs)
2332
sleep 5
2433
done
34+
2535
echo ">> Monitoring for test job completion [$(date)]"
2636
kubectl wait --for=condition=complete job.batch \
2737
-l project=container-debug-support,type=integration-test

0 commit comments

Comments
 (0)