-
Notifications
You must be signed in to change notification settings - Fork 4k
[RecoveryServices.Backup] Removing name param from container #8088
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
1f22013
6895f65
f41052a
b83b45f
4eb7928
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,7 +30,7 @@ public ContainerTests(Xunit.Abstractions.ITestOutputHelper output) | |
XunitTracingInterceptor.AddToContext(_logger); | ||
} | ||
|
||
[Fact] | ||
[Fact(Skip = "This workload is not supported anymore")] | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Remove this test if it is not supported - same for all the other skips |
||
[Trait(Category.AcceptanceType, Category.CheckIn)] | ||
[Trait(TestConstants.Workload, TestConstants.AzureSql)] | ||
public void TestAzureSqlGetContainers() | ||
|
@@ -39,7 +39,7 @@ public void TestAzureSqlGetContainers() | |
_logger, PsBackupProviderTypes.AzureSql, "Test-AzureSqlGetContainers"); | ||
} | ||
|
||
[Fact] | ||
[Fact(Skip = "This workload is not supported anymore")] | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You need to remove these unsupported scenario tests, not skip them There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can I take this is next release? We have a whole cleanup to do related to this workload |
||
[Trait(Category.AcceptanceType, Category.CheckIn)] | ||
[Trait(TestConstants.Workload, TestConstants.AzureSql)] | ||
public void TestAzureSqlUnregisterContainer() | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,7 +30,7 @@ public ItemTests(Xunit.Abstractions.ITestOutputHelper output) | |
XunitTracingInterceptor.AddToContext(_logger); | ||
} | ||
|
||
[Fact] | ||
[Fact(Skip = "This workload is not supported anymore")] | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. See comment above - remove skipped tests if this is no longer supported |
||
[Trait(Category.AcceptanceType, Category.CheckIn)] | ||
[Trait(TestConstants.Workload, TestConstants.AzureSql)] | ||
public void TestAzureSqlGetItems() | ||
|
@@ -39,7 +39,7 @@ public void TestAzureSqlGetItems() | |
_logger, PsBackupProviderTypes.AzureSql, "Test-AzureSqlGetItems"); | ||
} | ||
|
||
[Fact] | ||
[Fact(Skip = "This workload is not supported anymore")] | ||
[Trait(Category.AcceptanceType, Category.CheckIn)] | ||
[Trait(TestConstants.Workload, TestConstants.AzureSql)] | ||
public void TestAzureSqlDisableProtection() | ||
|
@@ -48,7 +48,7 @@ public void TestAzureSqlDisableProtection() | |
_logger, PsBackupProviderTypes.AzureSql, "Test-AzureSqlDisableProtection"); | ||
} | ||
|
||
[Fact] | ||
[Fact(Skip = "This workload is not supported anymore")] | ||
[Trait(Category.AcceptanceType, Category.CheckIn)] | ||
[Trait(TestConstants.Workload, TestConstants.AzureSql)] | ||
public void TestAzureSqlGetRPs() | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
See the file change above - remove this file 'set'
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done