nix: don't run cargo test for crane buildpackage

CI does this already

Signed-off-by: strawberry <strawberry@puppygock.gay>
This commit is contained in:
strawberry 2024-05-03 03:35:36 -04:00 committed by June
parent cb70d51e2b
commit 706c1c993b

View file

@ -83,6 +83,9 @@ craneLib.buildPackage ( commonAttrs // {
(features != [])
"--features " + (builtins.concatStringsSep "," features);
# This is redundant with CI
cargoTestCommand = "";
# This is redundant with CI
doCheck = false;