Skip to content

Commit 73480c8

Browse files
author
Hantao (Will) Wang
committed
increase wait time until driver is deployed, build ginkgo
1 parent 1ac241a commit 73480c8

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

test/k8s-integration/driver.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ func installDriver(goPath, pkgDir, stagingImage, stagingVersion, deployOverlayNa
6464
}
6565

6666
// TODO (#139): wait for driver to be running
67-
time.Sleep(10 * time.Second)
67+
time.Sleep(time.Minute)
6868
statusCmd := exec.Command("kubectl", "describe", "pods", "-n", "default")
6969
err = runCommand("Checking driver pods", statusCmd)
7070
if err != nil {

test/k8s-integration/main.go

+4
Original file line numberDiff line numberDiff line change
@@ -211,6 +211,10 @@ func handle() error {
211211
if err != nil {
212212
return fmt.Errorf("failed to build Kubernetes: %v", err)
213213
}
214+
err = buildKubernetes(testDir, "ginkgo")
215+
if err != nil {
216+
return fmt.Errorf("failed to build Gingko: %v", err)
217+
}
214218
} else {
215219
testDir = k8sDir
216220
}

0 commit comments

Comments
 (0)