go-test-coverage
go-test-coverage copied to clipboard
go-test-coverage is tool and github action which reports issues when test coverage is below set threshold
I have a repo with a couple different projects in it, and I would like to set up a workflow that tests all the projects on a PR. It would...
some developers prefer to see coverage difference change on their PRs. `go-test-coverage` could be extended to allow such functionality for those who want it. 1) give new option which will...
The current Github Action (v2.10.1) does not work with Go version 1.22.3: "go: go.mod requires go >= 1.22.3 (running go 1.22.2)"
For Golang 1.21.0 I get ``` make check-coverage-html go install github.com/vladopajic/go-test-coverage/v2@latest go: github.com/vladopajic/go-test-coverage/[email protected] requires go >= 1.22; switching to go1.22.4 . . /Users/fkelly/go/bin/go-test-coverage --config=./.testcoverage.yml File coverage threshold (55%) satisfied: PASS...
Bumps [golang.org/x/tools](https://github.com/golang/tools) from 0.25.0 to 0.26.0. Commits 2ab3b51 go.mod: update golang.org/x dependencies 2683c79 gopls/internal/golang/stubmethods: rename analysis/stubmethods efd951d gopls/internal/analysis/stubmethods: merge into CodeAction d0d0d9e gopls/internal/cache: memoize dependent hash on analysisNode a19eef6 gopls/internal/cache:...
I'm trying to run the go-test-coverage but it constantly ignores my excluded paths/files. `./.testcoverage.yml` ```yml profile: ./cover.out local-prefix: "broker" threshold: file: 70 package: 80 total: 90 override: - threshold: 0...