···319319However, please check if it's possible to disable a problematic subset of the
320320test suite and leave a comment explaining your reasoning.
321321322322+This can be achived with `--skip` in `checkFlags`:
323323+324324+```nix
325325+rustPlatform.buildRustPackage {
326326+ /* ... */
327327+ checkFlags = [
328328+ # reason for disabling test
329329+ "--skip=example::tests:example_test"
330330+ ];
331331+}
332332+```
333333+322334#### Setting `test-threads` {#setting-test-threads}
323335324336`buildRustPackage` will use parallel test threads by default,