Skip to content

Commit

Permalink
fix pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
Bertk committed Oct 27, 2023
1 parent e18572c commit eba9c28
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
7 changes: 4 additions & 3 deletions eng/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,16 +33,17 @@ steps:

- task: PublishTestResults@2
inputs:
testResultsFormat: 'XUnit'
testResultsFormat: 'VSTest'
testResultsFiles: '**/*.trx'
mergeTestResults: true
mergeTestResults: false
publishRunAttachments: true


- template: publish-coverlet-result-files.yml

- template: publish-coverage-results.yml
parameters:
reports: $(Build.SourcesDirectory)/**/*.opencover.xml
reports: $(Build.SourcesDirectory)/**/*0.opencover.xml
condition: and(succeeded(), eq(variables['BuildConfiguration'], 'Debug'))
assemblyfilters: '-xunit;-coverlet.testsubject;-Coverlet.Tests.ProjectSample.*'
classfilters: '-[coverlet.core.tests.samples.netstandard]*;-[coverlet.tests.xunit.extensions]*'
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Diagnostics.NETCore.Client" Version="0.2.452401" />
<PackageReference Include="xunit" Version="2.5.0"/>
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.0"/>
</ItemGroup>
Expand Down

0 comments on commit eba9c28

Please sign in to comment.