File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -18,12 +18,16 @@ jobs:
18
18
matrix :
19
19
UnitTests :
20
20
npmCommand : test:unit
21
+ integration : false
21
22
CSharpIntegrationTests :
22
23
npmCommand : test:integration:csharp
24
+ integration : true
23
25
DevKitTests :
24
26
npmCommand : test:integration:devkit
27
+ integration : true
25
28
RazorTests :
26
29
npmCommand : test:integration:razor
30
+ integration : true
27
31
pool : ${{ parameters.pool }}
28
32
${{ if parameters.containerName }} :
29
33
container : ${{ parameters.containerName }}
34
38
installAdditionalLinuxDependencies : ${{ parameters.installAdditionalLinuxDependencies }}
35
39
npmCommand : $(npmCommand)
36
40
testVSCodeVersion : ${{ parameters.testVSCodeVersion }}
37
- isIntegrationTest : ${{ startsWith (variables.npmCommand , 'test:integration ') }}
41
+ isIntegrationTest : ${{ eq (variables.integration , 'true ') }}
You can’t perform that action at this time.
0 commit comments