Skip to content

Commit 176e497

Browse files
committed
tests: skip remote multi-node history cases
Signed-off-by: CrazyMax <1951866+crazy-max@users.noreply.github.com>
1 parent 766592b commit 176e497

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

tests/history.go

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,11 @@ func testHistoryInspect(t *testing.T, sb integration.Sandbox) {
7777
}
7878

7979
func testHistoryLs(t *testing.T, sb integration.Sandbox) {
80+
if isRemoteMultiNodeWorker(sb) {
81+
// FIXME: "history ls" fails on multi nodes
82+
t.Skip("fails with multi nodes")
83+
}
84+
8085
ref := buildTestProject(t, sb)
8186
require.NotEmpty(t, ref.Ref)
8287

@@ -141,6 +146,11 @@ func testHistoryLsStoppedBuilder(t *testing.T, sb integration.Sandbox) {
141146
}
142147

143148
func testHistoryBuildName(t *testing.T, sb integration.Sandbox) {
149+
if isRemoteMultiNodeWorker(sb) {
150+
// FIXME: "history ls" fails on multi nodes
151+
t.Skip("fails with multi nodes")
152+
}
153+
144154
t.Run("override", func(t *testing.T) {
145155
dir := createTestProject(t)
146156
out, err := buildCmd(sb, withArgs("--build-arg=BUILDKIT_BUILD_NAME=foobar", "--metadata-file", filepath.Join(dir, "md.json"), dir))

0 commit comments

Comments
 (0)