integration: Remove Parallel from TestDiskUsage

Check if removing the Parallel execution from that test fixes its
flakiness.

Signed-off-by: Paweł Gronowski <pawel.gronowski@docker.com>
This commit is contained in:
Paweł Gronowski 2024-03-18 12:11:34 +01:00
parent a9bca45e92
commit 1c03312378
No known key found for this signature in database
GPG key ID: B85EFCFE26DEF92A

View file

@ -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)