We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e30694 commit a8f7bb8Copy full SHA for a8f7bb8
1 file changed
azure-pipelines.yml
@@ -15,8 +15,10 @@ jobs:
15
matrix:
16
Debug:
17
BuildConfiguration: Debug
18
+ _debugArg: '-Debug'
19
Release:
20
BuildConfiguration: Release
21
+ _debugArg: ''
22
steps:
23
- task: NuGetToolInstaller@0
24
displayName: 'Use NuGet 5.3.1'
@@ -36,3 +38,8 @@ jobs:
36
38
solution: '$(BuildSolution)'
37
39
platform: '$(BuildPlatform)'
40
configuration: '$(BuildConfiguration)'
41
+
42
+ - task: PowerShell@2
43
+ displayName: Run Tests
44
+ script: .\opencover-report.ps1
45
+ arguments: '$(_debugArg) -NoBuild -NoReport'
0 commit comments