Not using test execution modes
Parallel
Parallel execution mode allows us to run specific tests in parallel. These tests will run alongside other parallel tests. Any sequential tests will be executed first.
func TestFoo(t *testing.T){
t.Parallel()
}
Shuffle
Randomize the execution order.
go test -shuffle=on -v .