buildRustPackage: support setting test-threads

This commit is contained in:
zowoq
2020-09-24 07:19:58 +10:00
parent a4d05ec30c
commit e4c71e6c6c
2 changed files with 16 additions and 1 deletions
+12
View File
@@ -119,6 +119,18 @@ The above are just guidelines, and exceptions may be granted on a case-by-case b
However, please check if it's possible to disable a problematic subset of the
test suite and leave a comment explaining your reasoning.
#### Setting `test-threads`
`buildRustPackage` will use parallel test threads by default,
sometimes it may be necessary to disable this so the tests run consecutively.
```nix
rustPlatform.buildRustPackage {
/* ... */
cargoParallelTestThreads = false;
}
```
### Building a package in `debug` mode
By default, `buildRustPackage` will use `release` mode for builds. If a package