Is there a way to run Ginkgo tests in parallel using the go_test rule? According to the Ginkgo doc, you need to run the ginkgo CLI with the -p flag in order to run tests in parallel. From my understanding, go_test uses go test binary and can only run parallel tests using the testing package but not Ginkgo. I have tried passing in args = ["-ginkgo.parallel.total 2"] in go_test, but it still executes Ginkgo tests sequentially.
Is there a way to run Ginkgo tests in parallel using the
go_test
rule? According to the Ginkgo doc, you need to run the ginkgo CLI with the-p
flag in order to run tests in parallel. From my understanding,go_test
usesgo test
binary and can only run parallel tests using thetesting
package but not Ginkgo. I have tried passing inargs = ["-ginkgo.parallel.total 2"]
ingo_test
, but it still executes Ginkgo tests sequentially.