diff --git a/tests/history.go b/tests/history.go index fa3526f37..eae26d693 100644 --- a/tests/history.go +++ b/tests/history.go @@ -77,6 +77,11 @@ func testHistoryInspect(t *testing.T, sb integration.Sandbox) { } func testHistoryLs(t *testing.T, sb integration.Sandbox) { + if isRemoteMultiNodeWorker(sb) { + // FIXME: "history ls" fails on multi nodes + t.Skip("fails with multi nodes") + } + ref := buildTestProject(t, sb) require.NotEmpty(t, ref.Ref) @@ -141,6 +146,11 @@ func testHistoryLsStoppedBuilder(t *testing.T, sb integration.Sandbox) { } func testHistoryBuildName(t *testing.T, sb integration.Sandbox) { + if isRemoteMultiNodeWorker(sb) { + // FIXME: "history ls" fails on multi nodes + t.Skip("fails with multi nodes") + } + t.Run("override", func(t *testing.T) { dir := createTestProject(t) out, err := buildCmd(sb, withArgs("--build-arg=BUILDKIT_BUILD_NAME=foobar", "--metadata-file", filepath.Join(dir, "md.json"), dir))