Skip to content

Commit

Permalink
Mark flaky tests
Browse files Browse the repository at this point in the history
Signed-off-by: apostasie <[email protected]>
  • Loading branch information
apostasie committed Oct 16, 2024
1 parent 61fd91c commit d28c873
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions cmd/nerdctl/image/image_list_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ package image

import (
"fmt"
"runtime"
"slices"
"strings"
"testing"
Expand Down Expand Up @@ -117,6 +118,13 @@ func TestImages(t *testing.T) {
},
}

if runtime.GOOS == "windows" {
testCase.Require = test.Require(
testCase.Require,
nerdtest.IsFlaky("https://github.com/containerd/nerdctl/issues/3524"),
)
}

testCase.Run(t)
}

Expand Down

0 comments on commit d28c873

Please sign in to comment.