Not using test execution modes (#84)
Official 100go entry on using parallelism and shuffle deliberately to expose hidden coupling in tests.
Official 100go entry on using parallelism and shuffle deliberately to expose hidden coupling in tests.
- Author: Teiva Harsanyi
- Authority: community
- Kind: guide
- URL: https://100go.co/#not-using-test-execution-modes-parallel-and-shuffle-84
What it covers
- parallel test execution
- shuffle mode
- finding order dependencies
Why authoritative
Official 100go website entry for this specific mistake.
Use when
- should these tests run in parallel
- when should I use go test -shuffle
- how can I expose hidden ordering dependencies in Go tests
Keywords
- test execution modes, parallel tests, shuffle, go test, ordering