When I run go test, my output:
go test
--- FAIL: TestGETSearchSuccess (0.00s) Location: drivers_api_test.go:283 Error: No
For those who as I am is getting problems because of multiple concurring tests running simultaneously. I found a way to limit the maximum number of test running in parallel:
go test -p 1
With this, your test will run sequentially one by one.
Source