Skip to content

Latest commit

 

History

History
45 lines (33 loc) · 1.07 KB

Readme.md

File metadata and controls

45 lines (33 loc) · 1.07 KB

go-testcov Build Status coverage

go test that fails on uncovered lines and shows them

  • 🎉 Instant, actionable feedback on 💚 test run
  • 🎉 Onboard legacy code with // untested sections: 5 comment
  • 🎉 Mark uncovered code sections with inline // untested section comment
  • 🚫 PRs with bad test coverage
  • 🚫 External/paid coverage tools
go get github.com/grosser/go-testcov
go-testcov
...
test output
...
pkg.go new uncovered sections introduced (1 current vs 0 configured)
pkg.go:20.14,21.11
pkg.go:54.5,56.5

Notes

  • coverage in go
  • Runtime overhead of is about 3%
  • Use -covermode atomic when testing parallel algorithms
  • Needs go 1.8+

Development

Run go-testcov on itself:

go install
go-testcov

Author

Michael Grosser
[email protected]
License: MIT