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
{{ message }}
This repository was archived by the owner on Apr 26, 2024. It is now read-only.
Copy file name to clipboardExpand all lines: docs/development/contributing_guide.md
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -167,6 +167,12 @@ was broken. They are slower than the linters but will typically catch more error
167
167
poetry run trial tests
168
168
```
169
169
170
+
You can run unit tests in parallel by specifying `-jX` argument to `trial` where `X` is the number of parallel runners you want. To use 4 cpu cores, you would run them like:
171
+
172
+
```sh
173
+
poetry run trial -j4 tests
174
+
```
175
+
170
176
If you wish to only run *some* unit tests, you may specify
171
177
another module instead of `tests` - or a test class or a method:
0 commit comments