File tree Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,22 @@ steps:
22
22
testRunTitle : net46-$(Agent.JobName)-nocoverage
23
23
condition : and(succeeded(), eq(variables['Agent.OS'], 'Windows_NT'))
24
24
25
+ - task : DotNetCoreCLI@2
26
+ displayName : dotnet test -f net472 (w/ coverage)
27
+ inputs :
28
+ command : test
29
+ arguments : --no-build -c $(BuildConfiguration) -f net472 --filter "TestCategory!=FailsInCloudTest & TestCategory!=FailsWhileInstrumented" -v n /p:CollectCoverage=true
30
+ testRunTitle : net472-$(Agent.JobName)
31
+ condition : and(succeeded(), eq(variables['Agent.OS'], 'Windows_NT'))
32
+
33
+ - task : DotNetCoreCLI@2
34
+ displayName : dotnet test -f net472 (w/o coverage)
35
+ inputs :
36
+ command : test
37
+ arguments : --no-build -c $(BuildConfiguration) -f net472 --filter "TestCategory!=FailsInCloudTest & TestCategory=FailsWhileInstrumented" -v n
38
+ testRunTitle : net472-$(Agent.JobName)-nocoverage
39
+ condition : and(succeeded(), eq(variables['Agent.OS'], 'Windows_NT'))
40
+
25
41
- task : DotNetCoreCLI@2
26
42
displayName : dotnet test -f netcoreapp2.1
27
43
inputs :
You can’t perform that action at this time.
0 commit comments