File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -18,16 +18,16 @@ jobs:
18
18
matrix :
19
19
UnitTests :
20
20
npmCommand : test:unit
21
- integration : false
21
+ isIntegration : false
22
22
CSharpIntegrationTests :
23
23
npmCommand : test:integration:csharp
24
- integration : true
24
+ isIntegration : true
25
25
DevKitTests :
26
26
npmCommand : test:integration:devkit
27
- integration : true
27
+ isIntegration : true
28
28
RazorTests :
29
29
npmCommand : test:integration:razor
30
- integration : true
30
+ isIntegration : true
31
31
pool : ${{ parameters.pool }}
32
32
${{ if parameters.containerName }} :
33
33
container : ${{ parameters.containerName }}
38
38
installAdditionalLinuxDependencies : ${{ parameters.installAdditionalLinuxDependencies }}
39
39
npmCommand : $(npmCommand)
40
40
testVSCodeVersion : ${{ parameters.testVSCodeVersion }}
41
- isIntegrationTest : ${{ eq(variables.integration, 'true') }}
41
+ isIntegration : $(isIntegration)
Original file line number Diff line number Diff line change @@ -8,8 +8,8 @@ parameters:
8
8
type : string
9
9
- name : testVSCodeVersion
10
10
type : string
11
- - name : isIntegrationTest
12
- type : boolean
11
+ - name : isIntegration
12
+ type : string
13
13
14
14
steps :
15
15
- checkout : self
46
46
mergeTestResults : true
47
47
testRunTitle : $(System.StageDisplayName) $(Agent.JobName) (Attempt $(System.JobAttempt))
48
48
49
- - ${{ if eq(parameters.isIntegrationTest, true) }} :
49
+ - ${{ if eq(parameters.isIntegration, ' true' ) }} :
50
50
- powershell : |
51
51
$tempPath = [System.IO.Path]::GetTempPath()
52
52
echo "Temp Path: $tempPath"
You can’t perform that action at this time.
0 commit comments