Skip flaky test case for calendar exceptions (#3676)
This test needs to be re-enabled with #3675 --- #### Does this PR need a docs update or release note? - [ ] ✅ Yes, it's included - [ ] 🕐 Yes, but in a later PR - [x] ⛔ No #### Type of change <!--- Please check the type of change your PR introduces: ---> - [ ] 🌻 Feature - [ ] 🐛 Bugfix - [ ] 🗺️ Documentation - [x] 🤖 Supportability/Tests - [ ] 💻 CI/Deployment - [ ] 🧹 Tech Debt/Cleanup #### Issue(s) <!-- Can reference multiple issues. Use one of the following "magic words" - "closes, fixes" to auto-close the Github issue. --> * #3675 #### Test Plan <!-- How will this be tested prior to merging.--> - [x] 💪 Manual - [ ] ⚡ Unit test - [ ] 💚 E2E
This commit is contained in:
parent
2138c69898
commit
3ba9daccdf
@ -134,6 +134,11 @@ func (suite *RestoreIntgSuite) TestRestoreEvent() {
|
||||
}
|
||||
|
||||
for _, test := range tests {
|
||||
// Skip till https://github.com/alcionai/corso/issues/3675 is fixed
|
||||
if test.name == "Test exceptionOccurrences" {
|
||||
t.Skip("Bug 3675")
|
||||
}
|
||||
|
||||
suite.Run(test.name, func() {
|
||||
t := suite.T()
|
||||
|
||||
@ -384,6 +389,8 @@ func (suite *RestoreIntgSuite) TestRestoreExchangeObject() {
|
||||
func (suite *RestoreIntgSuite) TestRestoreAndBackupEvent_recurringInstancesWithAttachments() {
|
||||
t := suite.T()
|
||||
|
||||
t.Skip("Bug 3675")
|
||||
|
||||
ctx, flush := tester.NewContext(t)
|
||||
defer flush()
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user