Skip to content

Commit

Permalink
Skip TestExportAndImportMultiLayer on Windows
Browse files Browse the repository at this point in the history
This change skips the TestExportAndImportMultiLayer in integration/client
for the time being. It seems the image was updated recently and no longer
has a Windows entry in the manifest so the test will always fail. This should
be reverted when we figure out what happened to the image, but this is to
unblock PRs for the time being.

Signed-off-by: Daniel Canter <dcanter@microsoft.com>
  • Loading branch information
dcantah committed Dec 2, 2021
1 parent 591d709 commit 2a6857d
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions integration/client/import_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}

Expand Down

0 comments on commit 2a6857d

Please sign in to comment.