We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d74158 commit 3bb702eCopy full SHA for 3bb702e
changelog/v1.18.0-rc3/disabling-flaky-test.yaml
@@ -0,0 +1,6 @@
1
+changelog:
2
+ - type: NON_USER_FACING
3
+ description: |
4
+ Disabling flaky test TestConfigureTCPRouteBackingDestinationsWithMultiServices
5
+ issueLink: https://github.com/solo-io/gloo/issues/10366
6
+ resolvesIssue: false
test/kubernetes/e2e/features/services/tcproute/suite.go
@@ -76,6 +76,8 @@ func (s *testingSuite) TestConfigureTCPRouteBackingDestinationsWithSingleService
76
}
77
78
func (s *testingSuite) TestConfigureTCPRouteBackingDestinationsWithMultiServices() {
79
+ s.T().Skip("skipping test until we resolve the reason it is flaky")
80
+
81
s.T().Cleanup(func() {
82
err := s.testInstallation.Actions.Kubectl().DeleteFile(s.ctx, multiTcpRouteManifest)
83
s.NoError(err, "can delete manifest")
0 commit comments