File tree Expand file tree Collapse file tree 1 file changed +3
-5
lines changed
src/ProjectTemplates/test/Templates.Tests Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ public ITestOutputHelper Output
35
35
}
36
36
37
37
[ ConditionalTheory ]
38
- [ SkipOnHelix ( "Not supported queues" , Queues = "All.OSX ;" + HelixConstants . Windows10Arm64 + HelixConstants . DebianArm64 ) ]
38
+ [ SkipOnHelix ( "Not supported queues" , Queues = "windows.11.arm64.open ;" + HelixConstants . Windows10Arm64 + HelixConstants . DebianArm64 ) ]
39
39
[ SkipOnAlpine ( "https://github.com/grpc/grpc/issues/18338" ) ]
40
40
[ InlineData ( true ) ]
41
41
[ InlineData ( false ) ]
@@ -54,11 +54,9 @@ public async Task GrpcTemplate(bool useProgramMain)
54
54
55
55
await project . RunDotNetBuildAsync ( ) ;
56
56
57
- var isOsx = RuntimeInformation . IsOSPlatform ( OSPlatform . OSX ) ;
58
57
var isWindowsOld = RuntimeInformation . IsOSPlatform ( OSPlatform . Windows ) && Environment . OSVersion . Version < new Version ( 6 , 2 ) ;
59
- var unsupported = isOsx || isWindowsOld ;
60
58
61
- using ( var serverProcess = project . StartBuiltProjectAsync ( hasListeningUri : ! unsupported , logger : Logger ) )
59
+ using ( var serverProcess = project . StartBuiltProjectAsync ( hasListeningUri : ! isWindowsOld , logger : Logger ) )
62
60
{
63
61
// These templates are HTTPS + HTTP/2 only which is not supported on some platforms.
64
62
if ( isWindowsOld )
@@ -76,7 +74,7 @@ public async Task GrpcTemplate(bool useProgramMain)
76
74
}
77
75
}
78
76
79
- using ( var aspNetProcess = project . StartPublishedProjectAsync ( hasListeningUri : ! unsupported ) )
77
+ using ( var aspNetProcess = project . StartPublishedProjectAsync ( hasListeningUri : ! isWindowsOld ) )
80
78
{
81
79
// These templates are HTTPS + HTTP/2 only which is not supported on some platforms.
82
80
if ( isWindowsOld )
You can’t perform that action at this time.
0 commit comments