I have multiple packages under a subdirectory under src/, running the tests for each package with go test is working fine.
go test
When trying to run all tests
apparently running go test -p 1 runs everything sequentially (including build), I haven't see this argument in go help test or go help testflag
go test -p 1
go help test
go help testflag