From be6cb13a7b9908cea4adb010f94549f40fa364c2 Mon Sep 17 00:00:00 2001 From: Hitesh Pattanayak <48874082+HiteshRepo@users.noreply.github.com> Date: Wed, 3 Jan 2024 21:44:29 +0530 Subject: [PATCH] skip cli level tests for sharepoint lists to fix nightly tests (#4963) skips cli level tests for sharepoint lists to fix nightly tests Tests skipped: - TestBackupSharepointE2ESuite/TestSharepointBackupCmd_lists - TestBackupSharepointE2ESuite/TestSharepointBackupCmd_siteNotFound_lists (was already skipped from an earlier [PR](https://github.com/alcionai/corso/pull/4936) merge today) Test failed but not skipped: - TestPreparedBackupSharepointE2ESuite/TestSharepointDetailsCmd_lists (this [commit](https://github.com/alcionai/corso/commit/c87533a26677a189b0b5f9e59b57f13ef98bdd4e) should fix this failure) #### Does this PR need a docs update or release note? - [x] :no_entry: No #### Type of change - [x] :bug: Bugfix #### Issue(s) https://github.com/alcionai/corso/actions/runs/7393325015/job/20113092443 #### Test Plan - [x] :muscle: Manual - [x] :zap: Unit test - [x] :green_heart: E2E --- src/cli/backup/sharepoint_e2e_test.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/cli/backup/sharepoint_e2e_test.go b/src/cli/backup/sharepoint_e2e_test.go index f5147bc85..4f65f15d4 100644 --- a/src/cli/backup/sharepoint_e2e_test.go +++ b/src/cli/backup/sharepoint_e2e_test.go @@ -109,6 +109,8 @@ func (suite *BackupSharepointE2ESuite) SetupSuite() { } func (suite *BackupSharepointE2ESuite) TestSharepointBackupCmd_lists() { + // Issue: https://github.com/alcionai/corso/issues/4754 + suite.T().Skip("unskip when sharepoint lists support is enabled") runSharepointBackupCategoryTest(suite, flags.DataLists) }