From 78198da34a57b1f6e92b9c95d89e02d8888169ff Mon Sep 17 00:00:00 2001 From: Michael Crosby Date: Tue, 2 Jul 2019 16:33:25 -0400 Subject: [PATCH] Skip TestServiceRemoveKeepsIngressNetwork Ref: #39426 This is a common flaky test that I have seen on multiple PRs. It is not consistent and should be skipped until it is fixed to be robust. A simple fix for the swarm tests is not easy as they all poll and have 1 billion timeouts in all the tests so a skip is valid here. Signed-off-by: Michael Crosby (cherry picked from commit b94218560ed7abcb461f88d122ec7d200d26ca5f) Signed-off-by: Sebastiaan van Stijn --- integration/network/service_test.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/integration/network/service_test.go b/integration/network/service_test.go index 8c5bc80a0e..36360a2731 100644 --- a/integration/network/service_test.go +++ b/integration/network/service_test.go @@ -227,6 +227,8 @@ func TestServiceWithPredefinedNetwork(t *testing.T) { const ingressNet = "ingress" func TestServiceRemoveKeepsIngressNetwork(t *testing.T) { + t.Skip("FLAKY_TEST") + skip.If(t, testEnv.OSType == "windows") defer setupTest(t)() d := swarm.NewSwarm(t, testEnv)