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 <crosbymichael@gmail.com>
| ... | ... |
@@ -227,6 +227,8 @@ func TestServiceWithPredefinedNetwork(t *testing.T) {
|
| 227 | 227 |
const ingressNet = "ingress" |
| 228 | 228 |
|
| 229 | 229 |
func TestServiceRemoveKeepsIngressNetwork(t *testing.T) {
|
| 230 |
+ t.Skip("FLAKY_TEST")
|
|
| 231 |
+ |
|
| 230 | 232 |
skip.If(t, testEnv.OSType == "windows") |
| 231 | 233 |
defer setupTest(t)() |
| 232 | 234 |
d := swarm.NewSwarm(t, testEnv) |