Skip to content

Commit 8e113b5

Browse files
committed
Experimenting running docker required tests on windows ci
1 parent 35e3911 commit 8e113b5

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

tests/CommunityToolkit.Aspire.Testing/RequiresDockerAttribute.cs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,7 @@ public class RequiresDockerAttribute : Attribute, ITraitAttribute
2222
// - Windows: assume installed only for *local* runs as docker isn't supported on CI yet
2323
// - https://github.com/dotnet/aspire/issues/4291
2424
// - Linux - Local, or CI: always assume that docker is installed
25-
public static bool IsSupported =>
26-
!OperatingSystem.IsWindows() ||
27-
!PlatformDetection.IsRunningOnCI;
28-
25+
public static bool IsSupported => true;
2926
public string? Reason { get; init; }
3027
public RequiresDockerAttribute(string? reason = null)
3128
{

0 commit comments

Comments
 (0)