Skip to content

Commit

Permalink
Disabling TestLogsAllCategoriesDefaultLevel on windows due to intermi…
Browse files Browse the repository at this point in the history
…ttent failures (#2617)
  • Loading branch information
tommcdon authored Sep 26, 2021
1 parent 6cd1a17 commit 993e065
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,14 @@ public async Task TestLogsAllCategoriesAllLevels()
/// <summary>
/// Test that log events at or above the default level are collected.
/// </summary>
[Fact]
[SkippableFact]
public async Task TestLogsAllCategoriesDefaultLevel()
{
if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows))
{
throw new SkipTestException("https://github.com/dotnet/diagnostics/issues/2541");
}

using Stream outputStream = await GetLogsAsync(settings =>
{
settings.UseAppFilters = false;
Expand Down

0 comments on commit 993e065

Please sign in to comment.