mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
[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>
This commit is contained in:
parent
7848b8beb9
commit
c95b17e598
1 changed files with 6 additions and 0 deletions
|
@ -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())
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue