Skip to content

Commit 8b69c08

Browse files
authored
Try using the matrix
1 parent 64aab65 commit 8b69c08

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

azure-pipelines/test-matrix.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,16 @@ jobs:
1818
matrix:
1919
UnitTests:
2020
npmCommand: test:unit
21+
integration: false
2122
CSharpIntegrationTests:
2223
npmCommand: test:integration:csharp
24+
integration: true
2325
DevKitTests:
2426
npmCommand: test:integration:devkit
27+
integration: true
2528
RazorTests:
2629
npmCommand: test:integration:razor
30+
integration: true
2731
pool: ${{ parameters.pool }}
2832
${{ if parameters.containerName }}:
2933
container: ${{ parameters.containerName }}
@@ -34,4 +38,4 @@ jobs:
3438
installAdditionalLinuxDependencies: ${{ parameters.installAdditionalLinuxDependencies }}
3539
npmCommand: $(npmCommand)
3640
testVSCodeVersion: ${{ parameters.testVSCodeVersion }}
37-
isIntegrationTest: ${{ startsWith(variables.npmCommand, 'test:integration') }}
41+
isIntegrationTest: ${{ eq(variables.integration, 'true') }}

0 commit comments

Comments
 (0)