diff --git a/integration/client/import_test.go b/integration/client/import_test.go index c8a225a0b..032816a6c 100644 --- a/integration/client/import_test.go +++ b/integration/client/import_test.go @@ -53,6 +53,13 @@ func TestExportAndImport(t *testing.T) { // images remain sane, and that the Garbage Collector won't delete part of its // content. func TestExportAndImportMultiLayer(t *testing.T) { + // Skip this test on Windows for now. The image being used for this test was updated recently and the manifest no longer has an entry for + // Windows so this will fail. + // + // TODO(dcantah): Look into what happened to the image and revert this. + if runtime.GOOS == "windows" { + t.Skip("Skipped on Windows") + } testExportImport(t, testMultiLayeredImage) }