Skip to content

Commit 87c6f76

Browse files
committed
Add Helix queue back in and skip it on tests where it doesn't work.
1 parent d6431be commit 87c6f76

File tree

5 files changed

+8
-4
lines changed

5 files changed

+8
-4
lines changed

eng/targets/Helix.Common.props

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
<ItemGroup>
3030
<HelixAvailableTargetQueue Include="Ubuntu.2004.Amd64.Open" Platform="Linux" />
3131
<HelixAvailableTargetQueue Include="OSX.13.Amd64.Open" Platform="OSX" />
32+
<HelixAvailableTargetQueue Include="Windows.11.Amd64.Client.Open" Platform="Windows" />
3233
<HelixAvailableTargetQueue Include="Windows.Amd64.VS2022.Pre.Open" Platform="Windows" />
3334
</ItemGroup>
3435
</When>

src/ProjectTemplates/test/Templates.Tests/ApiTemplateTest.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,29 +30,29 @@ public ITestOutputHelper Output
3030
}
3131

3232
[ConditionalFact]
33-
[SkipOnHelix("https://github.com/dotnet/aspnetcore/issues/47478")]
33+
[SkipOnHelix("https://github.com/dotnet/aspnetcore/issues/47478", Queues = "OSX.13.Amd64.Open;Ubuntu.2004.Amd64.Open;Windows.11.Amd64.Client.Open;")]
3434
public async Task ApiTemplateCSharp()
3535
{
3636
await ApiTemplateCore(languageOverride: null);
3737
}
3838

3939
[ConditionalFact]
40-
[SkipOnHelix("https://github.com/dotnet/aspnetcore/issues/47478")]
40+
[SkipOnHelix("https://github.com/dotnet/aspnetcore/issues/47478", Queues = "OSX.13.Amd64.Open;Ubuntu.2004.Amd64.Open;Windows.11.Amd64.Client.Open;")]
4141
public async Task ApiTemplateNativeAotCSharp()
4242
{
4343
Assert.True(false);
4444
await ApiTemplateCore(languageOverride: null, args: new[] { ArgConstants.PublishNativeAot });
4545
}
4646

4747
[ConditionalFact]
48-
[SkipOnHelix("https://github.com/dotnet/aspnetcore/issues/47478")]
48+
[SkipOnHelix("https://github.com/dotnet/aspnetcore/issues/47478", Queues = "OSX.13.Amd64.Open;Ubuntu.2004.Amd64.Open;Windows.11.Amd64.Client.Open;")]
4949
public async Task ApiTemplateProgramMainCSharp()
5050
{
5151
await ApiTemplateCore(languageOverride: null, args: new[] { ArgConstants.UseProgramMain });
5252
}
5353

5454
[ConditionalFact]
55-
[SkipOnHelix("https://github.com/dotnet/aspnetcore/issues/47478")]
55+
[SkipOnHelix("https://github.com/dotnet/aspnetcore/issues/47478", Queues = "OSX.13.Amd64.Open;Ubuntu.2004.Amd64.Open;Windows.11.Amd64.Client.Open;")]
5656
public async Task ApiTemplateProgramMainNativeAotCSharp()
5757
{
5858
await ApiTemplateCore(languageOverride: null, args: new[] { ArgConstants.UseProgramMain, ArgConstants.PublishNativeAot });

src/Servers/IIS/IIS/test/Common.LongTests/ShutdownTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -482,6 +482,7 @@ public async Task OutOfProcessToInProcessHostingModelSwitchWorks()
482482
}
483483

484484
[ConditionalFact]
485+
[SkipOnHelix("Unsupported queue", Queues = "Windows.Amd64.VS2022.Pre.Open;")]
485486
public async Task ConfigurationTouchedStress_InProcess()
486487
{
487488
await ConfigurationTouchedStress(HostingModel.InProcess);

src/Servers/IIS/IIS/test/Common.LongTests/StartupTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1294,6 +1294,7 @@ public async Task PreferEnvironmentVariablesOverWebConfigWhenConfigured(HostingM
12941294
[ConditionalFact]
12951295
[RequiresNewHandler]
12961296
[RequiresNewShim]
1297+
[SkipOnHelix("Unsupported queue", Queues = "Windows.Amd64.VS2022.Pre.Open;")]
12971298
public async Task ServerAddressesIncludesBaseAddress()
12981299
{
12991300
var appName = "\u041C\u043E\u0451\u041F\u0440\u0438\u043B\u043E\u0436\u0435\u043D\u0438\u0435";

src/Servers/IIS/IIS/test/IISExpress.FunctionalTests/InProcess/IISExpressShutdownTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ public async Task ServerShutsDownWhenMainExits()
4141
}
4242

4343
[ConditionalFact]
44+
[SkipOnHelix("Unsupported queue", Queues = "Windows.Amd64.VS2022.Pre.Open;")]
4445
public async Task ServerShutsDownWhenMainExitsStress()
4546
{
4647
var parameters = Fixture.GetBaseDeploymentParameters();

0 commit comments

Comments
 (0)