We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 35e3911 commit 8e113b5Copy full SHA for 8e113b5
tests/CommunityToolkit.Aspire.Testing/RequiresDockerAttribute.cs
@@ -22,10 +22,7 @@ public class RequiresDockerAttribute : Attribute, ITraitAttribute
22
// - Windows: assume installed only for *local* runs as docker isn't supported on CI yet
23
// - https://github.com/dotnet/aspire/issues/4291
24
// - Linux - Local, or CI: always assume that docker is installed
25
- public static bool IsSupported =>
26
- !OperatingSystem.IsWindows() ||
27
- !PlatformDetection.IsRunningOnCI;
28
-
+ public static bool IsSupported => true;
29
public string? Reason { get; init; }
30
public RequiresDockerAttribute(string? reason = null)
31
{
0 commit comments