Skip to content

Commit d3a39fd

Browse files
committed
Fix TestDiff failure with docker
Signed-off-by: apostasie <[email protected]>
1 parent d340ab0 commit d3a39fd

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

cmd/nerdctl/container_diff_linux_test.go

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,11 @@ import (
2323
)
2424

2525
func TestDiff(t *testing.T) {
26-
t.Parallel()
26+
// It is unclear why this is failing with docker when run in parallel
27+
// Obviously some other container test is interfering
28+
if testutil.GetTarget() != testutil.Docker {
29+
t.Parallel()
30+
}
2731
base := testutil.NewBase(t)
2832
containerName := testutil.Identifier(t)
2933
defer base.Cmd("rm", containerName).Run()

0 commit comments

Comments
 (0)