Skip to content

Commit

Permalink
Stopped ignoring flaky tests (#21787)
Browse files Browse the repository at this point in the history
  • Loading branch information
kinelski authored Jun 29, 2021
1 parent 2348056 commit 7928c0d
Show file tree
Hide file tree
Showing 12 changed files with 4,233 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -629,7 +629,6 @@ public async Task UpdateAlertConfigurationWithEveryMember()
[RecordedTest]
[TestCase(true)]
[TestCase(false)]
[Ignore("https://github.com/Azure/azure-sdk-for-net/issues/18004")]
public async Task GetAlertConfigurations(bool useTokenCredential)
{
MetricsAdvisorAdministrationClient adminClient = GetMetricsAdvisorAdministrationClient(useTokenCredential);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -555,7 +555,6 @@ public async Task UpdateDetectionConfigurationWithEveryMember()
[RecordedTest]
[TestCase(true)]
[TestCase(false)]
[Ignore("https://github.com/Azure/azure-sdk-for-net/issues/18004")]
public async Task GetDetectionConfigurations(bool useTokenCredential)
{
MetricsAdvisorAdministrationClient adminClient = GetMetricsAdvisorAdministrationClient(useTokenCredential);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1423,7 +1423,6 @@ public async Task UpdateSqlServerDataFeedWithCredentialAuthentication(SqlServerD
[RecordedTest]
[TestCase(true)]
[TestCase(false)]
[Ignore("https://github.com/Azure/azure-sdk-for-net/issues/18004")]
public async Task GetDataFeeds(bool useTokenCredential)
{
MetricsAdvisorAdministrationClient adminClient = GetMetricsAdvisorAdministrationClient(useTokenCredential);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -345,13 +345,12 @@ public async Task UpdateWebNotificationHookWithEveryMember()
[RecordedTest]
[TestCase(true)]
[TestCase(false)]
[Ignore("https://github.com/Azure/azure-sdk-for-net/issues/18004")]
public async Task GetHooksWithMinimumSetup(bool useTokenCredential)
{
MetricsAdvisorAdministrationClient adminClient = GetMetricsAdvisorAdministrationClient(useTokenCredential);

string hookName = Recording.GenerateAlphaNumericId("hook");
var hookToCreate = new WebNotificationHook(hookName, new Uri("http://contoso.com/"));
var hookToCreate = new EmailNotificationHook(hookName) { EmailsToAlert = { "fake@email.com" } };

await using var disposableHook = await DisposableNotificationHook.CreateHookAsync(adminClient, hookToCreate);

Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 7928c0d

Please sign in to comment.