8000 [tests] Quarantine additional tests for issues open against them by radical · Pull Request #8508 · dotnet/aspire · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

[tests] Quarantine additional tests for issues open against them #8508

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

Merged
merged 3 commits into from
Apr 3, 2025
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
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ public class AzureCosmosDBEmulatorFunctionalTests(ITestOutputHelper testOutputHe
// [InlineData(true)] // "Using CosmosDB emulator in integration tests leads to flaky tests - https://github.com/dotnet/aspire/issues/5820"
[InlineData(false)]
[RequiresDocker]
[QuarantinedTest("https://github.com/dotnet/aspire/issues/7345")]
public async Task VerifyWaitForOnCosmosDBEmulatorBlocksDependentResources(bool usePreview)
{
// Cosmos can be pretty slow to spin up, lets give it plenty of time.
Expand Down
1 change: 1 addition & 0 deletions tests/Aspire.Hosting.MySql.Tests/MySqlFunctionalTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -377,6 +377,7 @@ await pipeline.ExecuteAsync(async token =>

[Fact]
[RequiresDocker]
[QuarantinedTest("https://github.com/dotnet/aspire/issues/7340")]
public async Task VerifyEfMySql()
{
var cts = new CancellationTokenSource(TimeSpan.FromMinutes(5));
Expand Down
3 changes: 2 additions & 1 deletion tests/Aspire.Hosting.Tests/MSBuildTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

using System.Diagnostics;
using System.Text;
using Aspire.TestUtilities;
using Xunit;

namespace Aspire.Hosting.Tests;
Expand All @@ -13,7 +14,7 @@ public class MSBuildTests
/// Tests that when an AppHost has a ProjectReference to a library project, a warning is emitted.
/// </summary>
[Fact]
[ActiveIssue("https://github.com/dotnet/aspire/issues/8467")]
[QuarantinedTest("https://github.com/dotnet/aspire/issues/8467")]
public void EnsureWarningsAreEmittedWhenProjectReferencingLibraries()
{
var repoRoot = MSBuildUtils.GetRepoRoot();
Expand Down
1 change: 1 addition & 0 deletions tests/Aspire.Hosting.Tests/OperationModesTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ namespace Aspire.Hosting.Tests;
public class OperationModesTests(ITestOutputHelper outputHelper)
{
[Fact]
[QuarantinedTest("https://github.com/dotnet/aspire/issues/8400")]
public async Task VerifyBackwardsCompatableRunModeInvocation()
{
// The purpose of this test is to verify that the apphost executable will continue
Expand Down
1 change: 1 addition & 0 deletions tests/Aspire.Hosting.Tests/WithHttpCommandTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,7 @@ public async Task WithHttpCommand_ResultsInExpectedResultForStatusCode(int statu
[InlineData("get", true)]
[InlineData("post", false)]
[Theory]
[QuarantinedTest("https://github.com/dotnet/aspire/issues/8514")]
public async Task WithHttpCommand_ResultsInExpectedResultForHttpMethod(string? httpMethod, bool expectSuccess)
{
// Arrange
Expand Down
Loading
0