Skip to content

Commit 16e8c26

Browse files
authored
Merge pull request #6087 from bvlabsafrica/wcow-skip-flaky-tests
fix: tests: skip flaky integration tests on Windows
2 parents 69d0afc + c91c406 commit 16e8c26

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

client/client_test.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11561,6 +11561,8 @@ func testSourcePolicy(t *testing.T, sb integration.Sandbox) {
1156111561
}
1156211562

1156311563
func testLLBMountPerformance(t *testing.T, sb integration.Sandbox) {
11564+
// flaky on WS2025 and moby/moby too
11565+
integration.SkipOnPlatform(t, "windows")
1156411566
c, err := New(sb.Context(), sb.Address())
1156511567
require.NoError(t, err)
1156611568
defer c.Close()

frontend/dockerfile/dockerfile_mount_test.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -646,6 +646,8 @@ COPY --from=base /combined.txt /
646646

647647
// moby/buildkit#5566
648648
func testCacheMountParallel(t *testing.T, sb integration.Sandbox) {
649+
// flaky on WS2025
650+
integration.SkipOnPlatform(t, "windows")
649651
f := getFrontend(t, sb)
650652

651653
dockerfile := []byte(integration.UnixOrWindows(

0 commit comments

Comments
 (0)