Thanks to visit codestin.com
Credit goes to github.com

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