浏览代码

[integration-cli] ensureFrozenImages here too

Checks + pulls down the frozen images in the integration-cli
tests too. Fixes an issue where they wouldn't be pulled if running
against just integration-cli tests, e.g. through TESTFLAGS

Signed-off-by: Christopher Jones <tophj@linux.vnet.ibm.com>
Christopher Jones 7 年之前
父节点
当前提交
c95b17e598
共有 1 个文件被更改,包括 6 次插入0 次删除
  1. 6 0
      integration-cli/check_test.go

+ 6 - 0
integration-cli/check_test.go

@@ -60,6 +60,12 @@ func init() {
 
 func TestMain(m *testing.M) {
 	dockerBinary = testEnv.DockerBinary()
+	err := ienv.EnsureFrozenImagesLinux(&testEnv.Execution)
+	if err != nil {
+		fmt.Println(err)
+		os.Exit(1)
+	}
+
 	testEnv.Print()
 	os.Exit(m.Run())
 }