From 120219cdfbb415d7a90f309b9e756678b0f7afef Mon Sep 17 00:00:00 2001 From: Abhishek Pandey Date: Fri, 1 Dec 2023 14:36:49 -0800 Subject: [PATCH] Skip nightly conversations details test (#4781) See https://github.com/alcionai/corso/issues/4780 --- #### Does this PR need a docs update or release note? - [ ] :white_check_mark: Yes, it's included - [ ] :clock1: Yes, but in a later PR - [x] :no_entry: No #### Type of change - [ ] :sunflower: Feature - [ ] :bug: Bugfix - [ ] :world_map: Documentation - [x] :robot: Supportability/Tests - [ ] :computer: CI/Deployment - [ ] :broom: Tech Debt/Cleanup #### Issue(s) * # #### Test Plan - [ ] :muscle: Manual - [ ] :zap: Unit test - [x] :green_heart: E2E --- src/cli/backup/groups_e2e_test.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/cli/backup/groups_e2e_test.go b/src/cli/backup/groups_e2e_test.go index a3f8b4f77..90d48d5d6 100644 --- a/src/cli/backup/groups_e2e_test.go +++ b/src/cli/backup/groups_e2e_test.go @@ -464,6 +464,10 @@ func runGroupsDetailsCmdTest(suite *PreparedBackupGroupsE2ESuite, category path. t := suite.T() + if category == path.ConversationPostsCategory { + t.Skip("skipping conversation details test, see issue #4780") + } + ctx, flush := tester.NewContext(t) ctx = config.SetViper(ctx, suite.dpnd.vpr)