diff options
author | Fabricio Voznika <fvoznika@google.com> | 2018-08-02 12:40:29 -0700 |
---|---|---|
committer | Shentubot <shentubot@google.com> | 2018-08-02 12:42:07 -0700 |
commit | 4c1167de4ee2aa7b71729ff8b1c742b4183168d1 (patch) | |
tree | 13cedfb93a66e617fafd0cc1f6feaac764fb764b /runsc/test/image/python_test.go | |
parent | 57d0fcbdbf7e9d2d573ce8d4ca2f72b82f778d63 (diff) |
Isolate image pulling time from container startup
mysql image test is timing out sporadically and it's hard to tell
where the slow down in coming from.
PiperOrigin-RevId: 207147237
Change-Id: I05a4d2c116292695d63cf861f3b89cd1c54b6106
Diffstat (limited to 'runsc/test/image/python_test.go')
-rw-r--r-- | runsc/test/image/python_test.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/runsc/test/image/python_test.go b/runsc/test/image/python_test.go index e7324e83e..b77a6ec87 100644 --- a/runsc/test/image/python_test.go +++ b/runsc/test/image/python_test.go @@ -24,6 +24,9 @@ import ( ) func TestPythonHello(t *testing.T) { + if out, err := testutil.Pull("google/python-hello"); err != nil { + t.Fatalf("docker pull failed: %v\nout: %s", err, out) + } d := testutil.MakeDocker("python-hello-test") if out, err := d.Run("-p", "8080", "google/python-hello"); err != nil { t.Fatalf("docker run failed: %v\nout: %s", err, out) |