Skip to content

Commit bb8fcf3

Browse files
authored
Merge pull request moby#49802 from vvoland/TestStopContainerWithTimeout-noparallel
integration/TestStopContainerWithTimeout: Attempt to fix flakiness
2 parents aa51a79 + c49ce64 commit bb8fcf3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

integration/container/stop_test.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,8 @@ func TestStopContainerWithTimeout(t *testing.T) {
9595

9696
for _, tc := range testData {
9797
t.Run(tc.doc, func(t *testing.T) {
98-
t.Parallel()
98+
// TODO(vvoland): Investigate why it helps
99+
// t.Parallel()
99100
id := container.Run(ctx, t, apiClient, testCmd)
100101

101102
err := apiClient.ContainerStop(ctx, id, containertypes.StopOptions{Timeout: &tc.timeout})

0 commit comments

Comments
 (0)