0

我使用 Azure 管道运行单元测试和 SonarQube 集成。当我使用 cobertura 进行单元测试时,我无法将代码覆盖率结果传递到 SonarQube,尽管我在管道日志中看到了结果。但是,当我使用 OpenCover 时,这同样适用。

我也在管道日志中看到了这个警告,尽管我不确定这是否相关:“Missing blame information for the following files”</p>

管道目前看起来如下

 - task: DotNetCoreCLI@2
    inputs:
      command: ‘test’
      projects: | 
        <test-proj>
      arguments: ‘/p:CollectCoverage=true /p:CoverletOutputFormat=cobertura’
    displayName: ‘Run Tests’

 - task: SonarQubePrepare@4
    inputs: 
      SonarQube: <Service-Endpoint>
      scannerMode: ‘MSBuild’
      projectKey: ‘test:service’
      projectName: ‘test:service’
      extraproperties: | 
         sonar.flex.cobertura.reportPaths=$(Build.SourcesDirectory)/**/coverage.cobertura.xml 
  
 - task: DotNetCoreCLI@2
     <Running DotNet build>

 - task: SonarAnalyze@4
  

在运行 DotNet 测试阶段时,在此路径中获得测试结果 - E:\agent-5\2\s\test\ApiTest\coverage.cobertura.xml

任何建议,将不胜感激。

4

2 回答 2

1

您的步骤顺序需要从 更改test -> prepare for tests -> build -> analyzeprepare for tests -> build -> test -> analyze,如下所示:

 - task: SonarQubePrepare@4
    inputs: 
      SonarQube: <Service-Endpoint>
      scannerMode: ‘MSBuild’
      projectKey: ‘test:service’
      projectName: ‘test:service’
      extraproperties: | 
        sonar.flex.cobertura.reportPaths=$(Build.SourcesDirectory)/**/coverage.cobertura.xml 
  
 - task: DotNetCoreCLI@2
     <Running DotNet build>

 - task: DotNetCoreCLI@2
    inputs:
      command: ‘test’
      projects: | 
        <test-proj>
      arguments: ‘/p:CollectCoverage=true /p:CoverletOutputFormat=cobertura’
    displayName: ‘Run Tests’

 - task: SonarAnalyze@4
于 2021-03-05T18:39:45.277 回答
0

更新:显然,SonarQube 默认情况下不允许发布 Cobertura 结果文件(或者至少我无法让它运行)。

使用了一种解决方法 - 我必须将 OpenCover 测试结果文件传递给 SonarQube。为了将结果推送到 Azure Devops,我必须使用 reportgenerator 工具将结果转换为 Cobertura ,然后再将它们传递给 Azure Devops。

于 2021-03-11T23:20:56.870 回答