Hacker News new | ask | show | jobs
by alistproducer2 3738 days ago
I'm interested in contributing to geth. Are there any materials out there on how to run the tests?

Edit: I see the makefile target, although I can't get it to run on windows using my gitbash bash shell.

1 comments

We're making use of the standard Go tools + Godep and as such with any Go version below 1.6 you can run the tests with "godep go test ./...", anything above 1.5 with "go test ./...".

Good luck!

thanks a lot!