Skip to content

Commit ed44077

Browse files
authored
Merge pull request containerd#3394 from apostasie/dev-docker-fix
Fix TestDiff failure with docker
2 parents d340ab0 + d3a39fd commit ed44077

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)