From b94218560ed7abcb461f88d122ec7d200d26ca5f 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 --- 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 26c2b4a620..d2b2bb071c 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)