浏览代码

Merge pull request #47579 from vvoland/flaky-testdiskusage

integration: Remove Parallel from TestDiskUsage
Sebastiaan van Stijn 1 年之前
父节点
当前提交
ebf300c165
共有 1 个文件被更改,包括 3 次插入1 次删除
  1. 3 1
      integration/system/disk_usage_test.go

+ 3 - 1
integration/system/disk_usage_test.go

@@ -18,7 +18,9 @@ import (
 func TestDiskUsage(t *testing.T) {
 	skip.If(t, testEnv.DaemonInfo.OSType == "windows") // d.Start fails on Windows with `protocol not available`
 
-	t.Parallel()
+	// TODO: If this helps, then fix the root cause.
+	// See: https://github.com/moby/moby/issues/47119
+	// t.Parallel()
 
 	ctx := testutil.StartSpan(baseContext, t)