You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be nice to see which parts of the code are covered by the unit tests.
Go has the option to generate coverage reports: go test -coverprofile=cover.out
Which can be viewed with: go tool cover -html=cover.out
The text was updated successfully, but these errors were encountered:
I searched for multiple options(coveralls/codecov/snyk) to do this. Goveralls (go integration of coveralls) seems like a good option(even btcd uses coveralls). Please let me know if i can proceed with integrating goveralls for test coverage.
Hello, I just came to know about utreexo, found it interesting. I want to contribute or participate in the project. Can I know how to get started?
Hey! At the moment the most pressing need would be to get issue #333 fixed. If that doesn't seem like your thing, you can join us for the utreexo weekly call and we can help you get started. If you can join us on irc (#utreexo on libera.chat) I can help you get started :) If email is better for you, shoot me an email at [email protected]
It would be nice to see which parts of the code are covered by the unit tests.
Go has the option to generate coverage reports:
go test -coverprofile=cover.out
Which can be viewed with:
go tool cover -html=cover.out
The text was updated successfully, but these errors were encountered: