I was running tests against a new project, and it was really slow. When I ran with -x I saw a bunch of build steps that didn't seem to be necessary. Spelunking through docs, reveals that `go test` doesn't install artifacts. `go test -i` does install artifacts but doesn't run the tests.
So I changed my script to always `go test -i` followed by `go test` and lo, my tests run in 20% of the time. Am I doing something wrong? This feels really hacky - is it correct? Tim -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/d/optout.