File tree 1 file changed +25
-0
lines changed
1 file changed +25
-0
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,31 @@ stages:
10
10
inputs :
11
11
runtime : ' core'
12
12
13
+ - task : Pester@9
14
+ inputs :
15
+ scriptFolder : ' $(System.DefaultWorkingDirectory)\Extension\test\PesterTask'
16
+ resultsFile : ' $(System.DefaultWorkingDirectory)\Test-Pester.XML'
17
+ CodeCoverageOutputFile : ' $(System.DefaultWorkingDirectory)\CC-Pester.XML'
18
+ usePSCore : False
19
+ CodeCoverageFolder : ' $(System.DefaultWorkingDirectory)\Extension\Task'
20
+ run32Bit : False
21
+ PesterVersion : ' OtherVersion'
22
+ preferredPesterVersion : ' 4.10.1'
23
+
24
+ - task : PublishTestResults@2
25
+ condition : always()
26
+ inputs :
27
+ testResultsFiles : ' $(System.DefaultWorkingDirectory)\Test-Pester.XML'
28
+ testResultsFormat : NUnit
29
+ testRunTitle : Pester Extension Build
30
+
31
+ - task : PublishCodeCoverageResults@1
32
+ condition : always()
33
+ inputs :
34
+ codeCoverageTool : JaCoCo
35
+ pathToSources : ' $(System.DefaultWorkingDirectory)\Extension\Task'
36
+ summaryFileLocation : ' $(System.DefaultWorkingDirectory)\CC-Pester.XML'
37
+
13
38
- task : NodeTool@0
14
39
inputs :
15
40
versionSpec : ' 10.x'
You can’t perform that action at this time.
0 commit comments