diff --git a/integrations/access/discord/testlib/suite.go b/integrations/access/discord/testlib/suite.go index e1e4fb13b757d..93ee8681db458 100644 --- a/integrations/access/discord/testlib/suite.go +++ b/integrations/access/discord/testlib/suite.go @@ -485,6 +485,7 @@ func (s *DiscordSuiteOSS) TestExpiration() { // short time frame. func (s *DiscordSuiteEnterprise) TestRace() { t := s.T() + t.Skip("This test is flaky") ctx, cancel := context.WithTimeout(context.Background(), 20*time.Second) t.Cleanup(cancel) diff --git a/integrations/access/mattermost/testlib/suite.go b/integrations/access/mattermost/testlib/suite.go index cc2c49896efca..48d82b23b2aa5 100644 --- a/integrations/access/mattermost/testlib/suite.go +++ b/integrations/access/mattermost/testlib/suite.go @@ -507,6 +507,7 @@ func (s *MattermostSuiteOSS) TestExpiration() { // short time frame. func (s *MattermostSuiteEnterprise) TestRace() { t := s.T() + t.Skip("This test is flaky") ctx, cancel := context.WithTimeout(context.Background(), 20*time.Second) t.Cleanup(cancel) diff --git a/integrations/access/slack/testlib/suite.go b/integrations/access/slack/testlib/suite.go index a7134aa664ff4..e73a066da8f62 100644 --- a/integrations/access/slack/testlib/suite.go +++ b/integrations/access/slack/testlib/suite.go @@ -485,6 +485,7 @@ func (s *SlackSuiteOSS) TestExpiration() { // short time frame. func (s *SlackSuiteEnterprise) TestRace() { t := s.T() + t.Skip("This test is flaky") ctx, cancel := context.WithTimeout(context.Background(), 20*time.Second) t.Cleanup(cancel)