You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: jekyll/_cci2/parallelism-faster-jobs.md
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -227,3 +227,7 @@ suite. These applications are not developed or supported by CircleCI. Please che
227
227
a helper CLI tool that queries `phpunit.xml` files to get a list of test
228
228
filenames and print them. This is useful if you want to split tests to run
229
229
them in parallel based on timings on CI tools.
230
+
- **[go list](https://golang.org/cmd/go/#hdr-List_packages_or_modules)** - Use the built-in Go command `go list ./...` to glob Golang packages. This allows splitting package tests across multiple containers.
231
+
```
232
+
go test -v $(go list ./... | circleci tests split)
0 commit comments