File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 31
31
- template : /azure-pipelines/test.yml@self
32
32
parameters :
33
33
dotnetVersion : ${{ parameters.dotnetVersion }}
34
- installAdditionalLinuxDependencies : true
34
+ installAdditionalLinuxDependencies : ${{ parameters.installAdditionalLinuxDependencies }}
35
35
npmCommand : $(npmCommand)
36
- testVSCodeVersion : ${{ parameters.testVSCodeVersion }}
36
+ testVSCodeVersion : ${{ parameters.testVSCodeVersion }}
37
+ isIntegrationTest : $[ startsWith(variables.npmCommand, 'test:integration') ]
Original file line number Diff line number Diff line change @@ -8,6 +8,8 @@ parameters:
8
8
type : string
9
9
- name : testVSCodeVersion
10
10
type : string
11
+ - name : isIntegrationTest
12
+ type : boolean
11
13
12
14
steps :
13
15
- checkout : self
44
46
mergeTestResults : true
45
47
testRunTitle : $(System.StageDisplayName) $(Agent.JobName) (Attempt $(System.JobAttempt))
46
48
47
- - ${{ if contains (parameters.npmCommand, ':integration' ) }} :
49
+ - ${{ if eq (parameters.isIntegrationTest, true ) }} :
48
50
- powershell : |
49
51
$tempPath = [System.IO.Path]::GetTempPath()
50
52
echo "Temp Path: $tempPath"
You can’t perform that action at this time.
0 commit comments