Merge pull request #6315 from dcantah/skip-multilayertest-windows

Skip TestExportAndImportMultiLayer on Windows
This commit is contained in:
Akihiro Suda 2021-12-02 21:13:54 +09:00 committed by GitHub
commit 30d8dccd3d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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)
}