diff --git a/tests/Aspire.Hosting.Azure.Kusto.Tests/KustoFunctionalTests.cs b/tests/Aspire.Hosting.Azure.Kusto.Tests/KustoFunctionalTests.cs index 814bb7c4814..9eb1fbdeb3e 100644 --- a/tests/Aspire.Hosting.Azure.Kusto.Tests/KustoFunctionalTests.cs +++ b/tests/Aspire.Hosting.Azure.Kusto.Tests/KustoFunctionalTests.cs @@ -41,6 +41,7 @@ public KustoFunctionalTests(ITestOutputHelper testOutputHelper) [Fact] [RequiresFeature(TestFeature.Docker)] [ActiveIssue("https://github.com/dotnet/aspire/issues/11820", typeof(PlatformDetection), nameof(PlatformDetection.IsRunningFromAzdo))] + [ActiveIssue("https://github.com/microsoft/aspire/issues/15463", typeof(PlatformDetection), nameof(PlatformDetection.IsLinux))] public async Task KustoEmulator_Starts() { using var timeout = new CancellationTokenSource(TestConstants.ExtraLongTimeoutTimeSpan); @@ -91,6 +92,7 @@ public async Task KustoEmulator_Starts() [Fact] [RequiresFeature(TestFeature.Docker)] [ActiveIssue("https://github.com/dotnet/aspire/issues/11820", typeof(PlatformDetection), nameof(PlatformDetection.IsRunningFromAzdo))] + [ActiveIssue("https://github.com/microsoft/aspire/issues/15463", typeof(PlatformDetection), nameof(PlatformDetection.IsLinux))] public async Task KustoEmulator_WithDatabase_CanReadIngestedData() { using var timeout = new CancellationTokenSource(TestConstants.ExtraLongTimeoutTimeSpan); @@ -169,6 +171,7 @@ static async Task> ReadDataAsync(ICslQueryProvider client, Cancel [Fact] [RequiresFeature(TestFeature.Docker)] [ActiveIssue("https://github.com/dotnet/aspire/issues/11820", typeof(PlatformDetection), nameof(PlatformDetection.IsRunningFromAzdo))] + [ActiveIssue("https://github.com/microsoft/aspire/issues/15463", typeof(PlatformDetection), nameof(PlatformDetection.IsLinux))] public async Task KustoEmulator_WithDatabaseThatAlreadyExists_ErrorIsIgnored() { using var timeout = new CancellationTokenSource(TestConstants.ExtraLongTimeoutTimeSpan); @@ -196,6 +199,7 @@ public async Task KustoEmulator_WithDatabaseThatAlreadyExists_ErrorIsIgnored() [Fact] [RequiresFeature(TestFeature.Docker)] [ActiveIssue("https://github.com/dotnet/aspire/issues/11820", typeof(PlatformDetection), nameof(PlatformDetection.IsRunningFromAzdo))] + [ActiveIssue("https://github.com/microsoft/aspire/issues/15463", typeof(PlatformDetection), nameof(PlatformDetection.IsLinux))] public async Task KustoEmulator_WithInvalidDatabase_LogsErrorAndContinues() { using var timeout = new CancellationTokenSource(TestConstants.ExtraLongTimeoutTimeSpan); @@ -227,6 +231,7 @@ public async Task KustoEmulator_WithInvalidDatabase_LogsErrorAndContinues() [Fact] [RequiresFeature(TestFeature.Docker)] [ActiveIssue("https://github.com/dotnet/aspire/issues/11820", typeof(PlatformDetection), nameof(PlatformDetection.IsRunningFromAzdo))] + [ActiveIssue("https://github.com/microsoft/aspire/issues/15463", typeof(PlatformDetection), nameof(PlatformDetection.IsLinux))] public async Task KustoEmulator_WithBindMount_IsUsedForPersistence() { using var timeout = new CancellationTokenSource(TestConstants.ExtraLongTimeoutTimeSpan);