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
4 changes: 1 addition & 3 deletions tests/Aspire.Cli.Tests/Commands/DeployCommandTests.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Licensed to the .NET Foundation under one or more agreements.
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.

using System.Runtime.CompilerServices;
Expand All @@ -9,7 +9,6 @@
using Aspire.Cli.Tests.TestServices;
using Microsoft.Extensions.DependencyInjection;
using Aspire.Cli.Utils;
using Aspire.TestUtilities;
using Microsoft.AspNetCore.InternalTesting;

namespace Aspire.Cli.Tests.Commands;
Expand Down Expand Up @@ -269,7 +268,6 @@ public async Task DeployCommandSucceedsEndToEnd()
}

[Fact]
[QuarantinedTest("https://github.com/dotnet/aspire/issues/11217")]
public async Task DeployCommandIncludesDeployFlagInArguments()
{
using var tempRepo = TemporaryWorkspace.Create(outputHelper);
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Licensed to the .NET Foundation under one or more agreements.
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.

using System.Text.Json;
Expand All @@ -7,7 +7,6 @@
using Aspire.Cli.Projects;
using Aspire.Cli.Tests.Utils;
using Microsoft.Extensions.DependencyInjection;
using Aspire.TestUtilities;
using Microsoft.AspNetCore.InternalTesting;

namespace Aspire.Cli.Tests.Commands;
Expand Down Expand Up @@ -55,7 +54,6 @@ public async Task ExtensionInternalCommand_WithNoSubcommand_ReturnsZero()
}

[Fact]
[QuarantinedTest("https://github.com/dotnet/aspire/issues/12304")]
public async Task GetAppHostsCommand_WithSingleProject_ReturnsSuccessWithValidJson()
{
using var workspace = TemporaryWorkspace.Create(outputHelper);
Expand Down Expand Up @@ -97,7 +95,6 @@ public async Task GetAppHostsCommand_WithSingleProject_ReturnsSuccessWithValidJs
}

[Fact]
[QuarantinedTest("https://github.com/dotnet/aspire/issues/12300")]
public async Task GetAppHostsCommand_WithMultipleProjects_ReturnsSuccessWithAllCandidates()
{
using var workspace = TemporaryWorkspace.Create(outputHelper);
Expand Down
1 change: 0 additions & 1 deletion tests/Aspire.Hosting.Docker.Tests/DockerComposeTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -652,7 +652,6 @@ public async Task PushImageToRegistry_WithLocalRegistry_OnlyTagsImage()
}

[Fact]
[QuarantinedTest("https://github.com/dotnet/aspire/issues/13878")]
public async Task PushImageToRegistry_WithRemoteRegistry_PushesImage()
{
using var tempDir = new TestTempDirectory();
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Licensed to the .NET Foundation under one or more agreements.
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.

#pragma warning disable CS0618 // Type or member is obsolete
Expand All @@ -13,7 +13,6 @@
using Aspire.Hosting.Pipelines;
using Aspire.Hosting.Tests.Publishing;
using Aspire.Hosting.Utils;
using Aspire.TestUtilities;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Logging.Abstractions;
Expand Down Expand Up @@ -2027,7 +2026,6 @@ public async Task FilterStepsForExecution_WithRequiredBy_IncludesTransitiveDepen
}

[Fact]
[QuarantinedTest("https://github.com/dotnet/aspire/issues/13083")]
public async Task ProcessParametersStep_ValidatesBehavior()
{
// Arrange
Expand Down
2 changes: 0 additions & 2 deletions tests/Aspire.Hosting.Tests/WithHttpCommandTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
using System.Net;
using Aspire.Hosting.Testing;
using Aspire.Hosting.Utils;
using Aspire.TestUtilities;
using Microsoft.AspNetCore.InternalTesting;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Http.Resilience;
Expand Down Expand Up @@ -401,7 +400,6 @@ public async Task WithHttpCommand_CallsGetResponseCallback_AfterSendingRequest()
}

[Fact]
[QuarantinedTest("https://github.com/dotnet/aspire/issues/8101")]
public async Task WithHttpCommand_EnablesCommandOnceResourceIsRunning()
{
// Arrange
Expand Down
Loading