mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
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 <crosbymichael@gmail.com>
This commit is contained in:
parent
a43a2ed746
commit
b94218560e
1 changed files with 2 additions and 0 deletions
|
@ -227,6 +227,8 @@ func TestServiceWithPredefinedNetwork(t *testing.T) {
|
||||||
const ingressNet = "ingress"
|
const ingressNet = "ingress"
|
||||||
|
|
||||||
func TestServiceRemoveKeepsIngressNetwork(t *testing.T) {
|
func TestServiceRemoveKeepsIngressNetwork(t *testing.T) {
|
||||||
|
t.Skip("FLAKY_TEST")
|
||||||
|
|
||||||
skip.If(t, testEnv.OSType == "windows")
|
skip.If(t, testEnv.OSType == "windows")
|
||||||
defer setupTest(t)()
|
defer setupTest(t)()
|
||||||
d := swarm.NewSwarm(t, testEnv)
|
d := swarm.NewSwarm(t, testEnv)
|
||||||
|
|
Loading…
Reference in a new issue