-
Notifications
You must be signed in to change notification settings - Fork 44
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Improve test coverage to >= 80% #21
Comments
Via $ go test ./... -coverprofile=c.out
$ go tool cover -func c.out As of today the total coverage is at 48.8% |
Thanks @jonasagx --also, the Makefile has the unit tests asserting minimal coverage (right now the quality gate threshold is 45%):
|
Merged
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Once coverage is at a good threshold, add a quality gate to the pipeline to prevent regression of coverage below a threshold.
The text was updated successfully, but these errors were encountered: