temporarily skip e2e smoke tests (#1835)
## Description These tests have the highes rate of timeout based failures, while providing the most loose gurantees about system behavior. This will temporarily disable them while we consider separating our suite between integration and e2e smoke sets. ## Does this PR need a docs update or release note? - [x] ⛔ No ## Type of change - [x] 🤖 Test ## Test Plan - [x] 💚 E2E
This commit is contained in:
parent
64696ec83b
commit
144d047568
@ -50,6 +50,8 @@ type NoBackupExchangeIntegrationSuite struct {
|
||||
}
|
||||
|
||||
func TestNoBackupExchangeIntegrationSuite(t *testing.T) {
|
||||
t.Skip("temporary skip on e2e smoke tests")
|
||||
|
||||
if err := tester.RunOnAny(
|
||||
tester.CorsoCITests,
|
||||
tester.CorsoCLITests,
|
||||
@ -139,6 +141,8 @@ type BackupExchangeIntegrationSuite struct {
|
||||
}
|
||||
|
||||
func TestBackupExchangeIntegrationSuite(t *testing.T) {
|
||||
t.Skip("temporary skip on e2e smoke tests")
|
||||
|
||||
if err := tester.RunOnAny(
|
||||
tester.CorsoCITests,
|
||||
tester.CorsoCLITests,
|
||||
@ -236,6 +240,8 @@ type PreparedBackupExchangeIntegrationSuite struct {
|
||||
}
|
||||
|
||||
func TestPreparedBackupExchangeIntegrationSuite(t *testing.T) {
|
||||
t.Skip("temporary skip on e2e smoke tests")
|
||||
|
||||
if err := tester.RunOnAny(
|
||||
tester.CorsoCITests,
|
||||
tester.CorsoCLITests,
|
||||
@ -472,6 +478,8 @@ type BackupDeleteExchangeIntegrationSuite struct {
|
||||
}
|
||||
|
||||
func TestBackupDeleteExchangeIntegrationSuite(t *testing.T) {
|
||||
t.Skip("temporary skip on e2e smoke tests")
|
||||
|
||||
if err := tester.RunOnAny(
|
||||
tester.CorsoCITests,
|
||||
tester.CorsoCLITests,
|
||||
|
||||
@ -40,6 +40,8 @@ type NoBackupOneDriveIntegrationSuite struct {
|
||||
}
|
||||
|
||||
func TestNoBackupOneDriveIntegrationSuite(t *testing.T) {
|
||||
t.Skip("temporary skip on e2e smoke tests")
|
||||
|
||||
if err := tester.RunOnAny(
|
||||
tester.CorsoCITests,
|
||||
tester.CorsoCLITests,
|
||||
@ -129,6 +131,8 @@ type BackupDeleteOneDriveIntegrationSuite struct {
|
||||
}
|
||||
|
||||
func TestBackupDeleteOneDriveIntegrationSuite(t *testing.T) {
|
||||
t.Skip("temporary skip on e2e smoke tests")
|
||||
|
||||
if err := tester.RunOnAny(
|
||||
tester.CorsoCITests,
|
||||
tester.CorsoCLITests,
|
||||
|
||||
@ -40,6 +40,8 @@ type NoBackupSharePointIntegrationSuite struct {
|
||||
}
|
||||
|
||||
func TestNoBackupSharePointIntegrationSuite(t *testing.T) {
|
||||
t.Skip("temporary skip on e2e smoke tests")
|
||||
|
||||
if err := tester.RunOnAny(
|
||||
tester.CorsoCITests,
|
||||
tester.CorsoCLITests,
|
||||
@ -129,6 +131,8 @@ type BackupDeleteSharePointIntegrationSuite struct {
|
||||
}
|
||||
|
||||
func TestBackupDeleteSharePointIntegrationSuite(t *testing.T) {
|
||||
t.Skip("temporary skip on e2e smoke tests")
|
||||
|
||||
if err := tester.RunOnAny(
|
||||
tester.CorsoCITests,
|
||||
tester.CorsoCLITests,
|
||||
|
||||
@ -316,6 +316,8 @@ func (suite *BackupOpIntegrationSuite) TestNewBackupOperation() {
|
||||
// TestBackup_Run ensures that Integration Testing works
|
||||
// for the following scopes: Contacts, Events, and Mail
|
||||
func (suite *BackupOpIntegrationSuite) TestBackup_Run_exchange() {
|
||||
suite.T().Skip("temporary skip on e2e smoke tests")
|
||||
|
||||
ctx, flush := tester.NewContext()
|
||||
defer flush()
|
||||
|
||||
@ -461,6 +463,8 @@ func (suite *BackupOpIntegrationSuite) TestBackup_Run_exchange() {
|
||||
}
|
||||
|
||||
func (suite *BackupOpIntegrationSuite) TestBackup_Run_oneDrive() {
|
||||
suite.T().Skip("temporary skip on e2e smoke tests")
|
||||
|
||||
ctx, flush := tester.NewContext()
|
||||
defer flush()
|
||||
|
||||
@ -494,6 +498,8 @@ func (suite *BackupOpIntegrationSuite) TestBackup_Run_oneDrive() {
|
||||
}
|
||||
|
||||
func (suite *BackupOpIntegrationSuite) TestBackup_Run_sharePoint() {
|
||||
suite.T().Skip("temporary skip on e2e smoke tests")
|
||||
|
||||
ctx, flush := tester.NewContext()
|
||||
defer flush()
|
||||
|
||||
|
||||
@ -260,6 +260,8 @@ func (suite *RestoreOpIntegrationSuite) TestNewRestoreOperation() {
|
||||
}
|
||||
|
||||
func (suite *RestoreOpIntegrationSuite) TestRestore_Run() {
|
||||
suite.T().Skip("temporary skip on e2e smoke tests")
|
||||
|
||||
ctx, flush := tester.NewContext()
|
||||
defer flush()
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user