stretchr / gorc

Recursive go testing, done better.
141 stars 2 forks source link

Running `go test ./...` versus gorc #31

Closed mattbostock closed 9 years ago

mattbostock commented 9 years ago

What is the benefit of using gorc test over go test ./..., which will also run go test recursively?

tylerstillwater commented 9 years ago

gorc allows you to easily run a named package regardless of depth, exclude packages from a run of all tests, etc. You have more fine control over which packages get run.

On Sat, Dec 6, 2014 at 5:03 AM, Matt Bostock notifications@github.com wrote:

What is the benefit of using gorc test over go test ./..., which will also run go test recursively?

Reply to this email directly or view it on GitHub: https://github.com/stretchr/gorc/issues/31

mattbostock commented 9 years ago

Cool, thanks for the explanation.