Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Setup

  • Put the appropriate Coverlet.nupkg in a local folder.
  • Update NuGet.config so that the package source local is that local folder.

Steps to Test (PowerShell 5 or 7)

Remove-Item test -r; `
dotnet test --results-directory test `
  --coverlet --coverlet-output-format cobertura `
  --diagnostic --diagnostic-verbosity Trace; `
Get-Item test\log* `
| Select-Object -First 1 `
| Get-Content `
| Select-String WARNING -SimpleMatch -CaseSensitive

Steps to Test (sh)

rm -r test; \
dotnet test --results-directory test \
  --coverlet --coverlet-output-format cobertura \
  --diagnostic --diagnostic-verbosity Trace; \
ls test/log_* | head -n 1 | xargs grep -F WARNING

About

Coverlet bug reproduction

Resources

Stars

0 stars

Watchers

0 watching

Forks

Contributors

Languages