Skip to content

Commit 9440865

Browse files
authored
[CI] re-enable windows non-helix tests on public pipeline rolling builds (#7701)
* [CI] re-enable windows non-helix tests on public pipeline rolling builds * Add missing RequiresDocker on a test * Add missing RequiresDocker on a test
1 parent 11ba9fe commit 9440865

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

eng/pipelines/azure-pipelines-public.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,7 @@ stages:
135135
repoTestResultsPath: $(Build.Arcade.TestResultsPath)
136136
isWindows: true
137137
runHelixTests: ${{ contains(testVariant, 'helix') }}
138+
runPipelineTests: ${{ contains(testVariant, '_pipeline') }}
138139

139140
# Linux jobs
140141
- ${{ each testVariant in split( variables.testVariants, ',' ) }}:

tests/Aspire.Hosting.Tests/WaitForTests.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -197,6 +197,7 @@ await app.ResourceNotifications.PublishUpdateAsync(dependency.Resource, s => s w
197197
}
198198

199199
[Fact]
200+
[RequiresDocker]
200201
public async Task WhenWaitBehaviorIsStopOnResourceUnavailableWaitForResourceHealthyAsyncShouldThrowWhenResourceFailsToStart()
201202
{
202203
using var builder = TestDistributedApplicationBuilder.Create().WithTestAndResourceLogging(testOutputHelper);
@@ -220,6 +221,7 @@ await app.ResourceNotifications.WaitForResourceHealthyAsync(
220221
}
221222

222223
[Fact]
224+
[RequiresDocker]
223225
public async Task WhenWaitBehaviorIsWaitOnResourceUnavailableWaitForResourceHealthyAsyncShouldThrowWhenResourceFailsToStart()
224226
{
225227
using var builder = TestDistributedApplicationBuilder.Create().WithTestAndResourceLogging(testOutputHelper);

0 commit comments

Comments
 (0)