If tests are run via:

go test -v  github.com/org/repo/...

will there be any additional parallelism compared to running:

go test -v  github.com/org/repo/package1 
go test -v  github.com/org/repo/package2 

?

I'm asking because I'm seeing cases in the log output where the timestamp 
on later test appears earlier than timestamp on previous test in another 
package:

--- PASS: TestInPackage1 (1.31s)
2017-10-16 14:57:54.351853 ....
PASS
ok      github.com/org/repo/package1    174.584s

=== RUN   TestInPackage2
2017-10-16T14:55:00.824-07:00 ....

-- 
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.

Reply via email to