我目前正在尝试使用 Azure DevOps 上的管道创建 Coverlet 覆盖率报告。但是,由于我的项目是“.Net FrameWork 4.7”项目,我无法像“.Net Core”项目一样使用“DotNetCoreCLI@2”任务创建覆盖率报告。
这是我的管道代码:
trigger:
- master
pool:
vmImage: 'windows-latest'
variables:
buildPlatform: 'Any CPU'
buildConfiguration: 'release'
Tests.Filter: '**\UnitTestProject1.dll'
Tests.Filter.Criteria: 'TestCategory!=Medium&TestCategory!=Large'
Tests.Filter.SettingsFile:
steps:
- task: NuGetToolInstaller@1
- task: NuGetCommand@2
inputs:
restoreSolution: '**/*.sln'
- task: DotNetCoreCLI@2
displayName: Test
inputs:
command: 'test'
projects: |
$(Tests.Filter)
!**\obj\**
publishTestResults: true
arguments: -c $(BuildConfiguration) --collect:"XPlat Code Coverage"
- task: DotNetCoreCLI@2
inputs:
command: custom
custom: tool
arguments: install --tool-path . dotnet-reportgenerator-globaltool
displayName: Install ReportGenerator tool
- script: reportgenerator -reports:$(Agent.TempDirectory)/**/*.coverage -targetdir:$(Build.SourcesDirectory)/coverlet/reports -reporttypes:"Cobertura"
displayName: Create reports
- task: PublishCodeCoverageResults@1
displayName: 'Publish code coverage'
inputs:
codeCoverageTool: Cobertura
summaryFileLocation: '$(Build.SourcesDirectory)\TestResults\Coverage\*.xml'
当所有测试都成功时,我收到:
Starting: Create reports
==============================================================================
Task : Command line
Description : Run a command line script using Bash on Linux and macOS and cmd.exe on Windows
Version : 2.164.2
Author : Microsoft Corporation
Help : https://docs.microsoft.com/azure/devops/pipelines/tasks/utility/command-line
==============================================================================
Generating script.
Script contents:
reportgenerator -reports:D:\a\_temp/**/*.coverage -targetdir:D:\a\1\s/coverlet/reports -reporttypes:"Cobertura"
========================== Starting Command Output ===========================
"C:\windows\system32\cmd.exe" /D /E:ON /V:OFF /S /C "CALL "D:\a\_temp\e4754795-32ae-47f2-bd62-d1c8b925eb84.cmd""
2020-09-28T14:56:09: Arguments
2020-09-28T14:56:09: -reports:D:\a\_temp/**/*.coverage
2020-09-28T14:56:09: -targetdir:D:\a\1\s/coverlet/reports
2020-09-28T14:56:09: -reporttypes:Cobertura
2020-09-28T14:56:09: The report file pattern 'D:\a\_temp/**/*.coverage' is invalid. No matching files found.
2020-09-28T14:56:09: No report files specified.
##[error]Cmd.exe exited with code '1'.
Finishing: Create reports
我还尝试使用 VSTest@2 并激活“CodeCoverageEnable”,但代码覆盖率与 Azure DevOps 不兼容,需要下载才能查看覆盖率报告。
这是我的 VSTest@2 管道代码:
trigger:
- master
pool:
vmImage: 'windows-latest'
variables:
buildPlatform: 'Any CPU'
buildConfiguration: 'release'
Tests.Filter: '**\UnitTestProject1.dll'
Tests.Filter.Criteria: 'TestCategory!=Medium&TestCategory!=Large'
Tests.Filter.SettingsFile:
steps:
- task: NuGetToolInstaller@1
- task: NuGetCommand@2
inputs:
restoreSolution: '**/*.sln'
- task: VSTest@2
displayName: 'Running UnitTests'
inputs:
testSelector: 'testAssemblies'
testAssemblyVer2: |
$(Tests.Filter)
!**\obj\**
searchFolder: '$(System.DefaultWorkingDirectory)'
testFiltercriteria: '$(Tests.Filter.Criteria)'
runSettingsFile: '$(Tests.Filter.SettingsFile)'
runInParallel: true
testRunTitle: 'Running UnitTests for $(Tests.Filter)'
platform: '$(buildPlateform)'
configuration: -c '$(buildConfiguration)'
codeCoverageEnabled: true
有没有办法为我的“.Net FrameWork 4.7”项目创建与 Azure DevOps(Cobertura 或 JaCoCo)兼容的覆盖率报告,而无需更改项目 .Net FrameWork 版本或项目类型?