Go 1.10 has a number of dev performance improvements. One interesting unusual choice is that 'go test' caches the test result: https://golang.org/doc/go1.10#test If you run the same passing tests on the same binary, you just get the cached output by default. Perf vs flakiness.