···319However, please check if it's possible to disable a problematic subset of the
320test suite and leave a comment explaining your reasoning.
321000000000000322#### Setting `test-threads` {#setting-test-threads}
323324`buildRustPackage` will use parallel test threads by default,
···319However, please check if it's possible to disable a problematic subset of the
320test suite and leave a comment explaining your reasoning.
321322+This can be achived with `--skip` in `checkFlags`:
323+324+```nix
325+rustPlatform.buildRustPackage {
326+ /* ... */
327+ checkFlags = [
328+ # reason for disabling test
329+ "--skip=example::tests:example_test"
330+ ];
331+}
332+```
333+334#### Setting `test-threads` {#setting-test-threads}
335336`buildRustPackage` will use parallel test threads by default,