From 1c033123788a2e816660a572c67b413ba8d9407f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Gronowski?= Date: Mon, 18 Mar 2024 12:11:34 +0100 Subject: [PATCH] integration: Remove Parallel from TestDiskUsage MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Check if removing the Parallel execution from that test fixes its flakiness. Signed-off-by: Paweł Gronowski --- integration/system/disk_usage_test.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/integration/system/disk_usage_test.go b/integration/system/disk_usage_test.go index 19d930909d..19522aa760 100644 --- a/integration/system/disk_usage_test.go +++ b/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)