From 706c1c993b203ab251db761b8ccda296c0810e7b Mon Sep 17 00:00:00 2001 From: strawberry Date: Fri, 3 May 2024 03:35:36 -0400 Subject: [PATCH] nix: don't run cargo test for crane buildpackage CI does this already Signed-off-by: strawberry --- nix/pkgs/main/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nix/pkgs/main/default.nix b/nix/pkgs/main/default.nix index 3ede7ffd..cb173422 100644 --- a/nix/pkgs/main/default.nix +++ b/nix/pkgs/main/default.nix @@ -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;