Disable parallel op-e2e tests in CI (#3979)
Running them sequentially actually turns out to be faster. In addition it turns out to be very hard to split the tests properly. `go list ./...` which was the previous approach splits them by package, but we need to split them by test name. Using `circleci tests glob "**/*.go"` did not work either becaue it was combining files from different packages.
Showing
Please register or sign in to comment