···8181 cargoArtifacts = craneLib.buildDepsOnly commonArgs;
82828383 # Build the actual crate itself, reusing the cargoArtifacts
8484- cmprss = craneLib.buildPackage (commonArgs // {meta.mainProgram = "cmprss";});
8484+ cmprss = craneLib.buildPackage (commonArgs
8585+ // {
8686+ doCheck = false; # Tests are run as a separate build with nextest
8787+ meta.mainProgram = "cmprss";
8888+ });
8589 in {
8690 checks = {
8791 # Build the crate as part of `nix flake check` for convenience
···100104 fmt = craneLib.cargoFmt commonArgs;
101105102106 # Run tests with cargo-nextest
103103- # Note: This provides limited value, as tests are already run in the build
104107 nextest = craneLib.cargoNextest commonArgs;
105108 };
106109