Skip to content
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

[Compute] Remove ingore attribute and fix the recording file after compute release #46634

Merged
merged 1 commit into from
Oct 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion eng/Packages.Data.props
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@
<PackageReference Update="Azure.Messaging.EventGrid" Version="4.17.0" />
<PackageReference Update="Azure.Messaging.EventHubs.Processor" Version="5.11.3" />
<PackageReference Update="Azure.Messaging.ServiceBus" Version="7.18.2" />
<PackageReference Update="Azure.ResourceManager.Compute" Version="1.2.0" />
<PackageReference Update="Azure.ResourceManager.Compute" Version="1.7.0-beta.1" />
<PackageReference Update="Azure.ResourceManager.CognitiveServices" Version="1.3.0" />
<PackageReference Update="Azure.ResourceManager.KeyVault" Version="1.1.0" />
<PackageReference Update="Azure.ResourceManager.ManagedServiceIdentities" Version="1.1.0" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
"AssetsRepo": "Azure/azure-sdk-assets",
"AssetsRepoPrefixPath": "net",
"TagPrefix": "net/computeschedule/Azure.ResourceManager.ComputeSchedule",
"Tag": "net/computeschedule/Azure.ResourceManager.ComputeSchedule_1309f68d38"
"Tag": "net/computeschedule/Azure.ResourceManager.ComputeSchedule_b95d5dae4f"
}
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ public ComputescheduleOperationsTests(bool isAsync)

[TestCase, Order(1)]
[RecordedTest]
[Ignore("This test case will cause errors in the pipeline. After fixing the problem, restore this test")]
public async Task TestSubmitStartOperations()
{
int vmCount = 1;
Expand Down Expand Up @@ -69,7 +68,6 @@ public async Task TestSubmitStartOperations()

[TestCase, Order(2)]
[RecordedTest]
[Ignore("This test case will cause errors in the pipeline. After fixing the problem, restore this test")]
public async Task TestSubmitDeallocateOperations()
{
int vmCount = 1;
Expand Down Expand Up @@ -111,7 +109,6 @@ public async Task TestSubmitDeallocateOperations()

[TestCase, Order(3)]
[RecordedTest]
[Ignore("This test case will cause errors in the pipeline. After fixing the problem, restore this test")]
public async Task TestSubmitHibernateOperations()
{
int vmCount = 1;
Expand Down Expand Up @@ -153,7 +150,6 @@ public async Task TestSubmitHibernateOperations()

[TestCase, Order(4)]
[RecordedTest]
[Ignore("This test case will cause errors in the pipeline. After fixing the problem, restore this test")]
public async Task TestExecuteHibernateOperations()
{
int vmCount = 1;
Expand Down Expand Up @@ -194,7 +190,6 @@ public async Task TestExecuteHibernateOperations()

[TestCase, Order(5)]
[RecordedTest]
[Ignore("This test case will cause errors in the pipeline. After fixing the problem, restore this test")]
public async Task TestExecuteDeallocateOperations()
{
int vmCount = 1;
Expand Down Expand Up @@ -235,7 +230,6 @@ public async Task TestExecuteDeallocateOperations()

[TestCase, Order(6)]
[RecordedTest]
[Ignore("This test case will cause errors in the pipeline. After fixing the problem, restore this test")]
public async Task TestExecuteStartOperations()
{
int vmCount = 1;
Expand Down Expand Up @@ -276,7 +270,6 @@ public async Task TestExecuteStartOperations()

[TestCase, Order(7)]
[RecordedTest]
[Ignore("This test case will cause errors in the pipeline. After fixing the problem, restore this test")]
public async Task TestCancelScheduledOperations()
{
int vmCount = 1;
Expand Down Expand Up @@ -326,7 +319,6 @@ public async Task TestCancelScheduledOperations()

[TestCase, Order(8)]
[RecordedTest]
[Ignore("This test case will cause errors in the pipeline. After fixing the problem, restore this test")]
public async Task TestGetOperationsErrors()
{
int vmCount = 1;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
"AssetsRepo": "Azure/azure-sdk-assets",
"AssetsRepoPrefixPath": "net",
"TagPrefix": "net/standbypool/Azure.ResourceManager.StandbyPool",
"Tag": "net/standbypool/Azure.ResourceManager.StandbyPool_8b4dab0039"
"Tag": "net/standbypool/Azure.ResourceManager.StandbyPool_de197be086"
}
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ public StandbyVirtualMachinePoolCRUDTests(bool isAsync)

[TestCase]
[RecordedTest]
[Ignore("This test case will cause errors in the pipeline. After fixing the problem, restore this test")]
public async Task StandbyVirtualMachinePoolCRUDTest()
{
string resourceGroupName = Recording.GenerateAssetName("standbyPoolRG-");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ private async Task CreateResources(ResourceGroupResource resourceGroup)

[TestCase]
[RecordedTest]
[Ignore("This test case will cause errors in the pipeline. After fixing the problem, restore this test")]
public async Task ListStandbyVirtualMachinePoolBySubscription()
{
string resourceGroupName = Recording.GenerateAssetName("standbyPoolRG-ru-");
Expand All @@ -42,7 +41,6 @@ public async Task ListStandbyVirtualMachinePoolBySubscription()

[TestCase]
[RecordedTest]
[Ignore("This test case will cause errors in the pipeline. After fixing the problem, restore this test")]
public async Task ListStandbyVirtualMachinePoolByResourcGroup()
{
string resourceGroupName = Recording.GenerateAssetName("standbyPoolRG-");
Expand Down
Loading