skip integration tests in nix package

These tests need a connection to the nix store and we can't have that in
the nix build environment.
This commit is contained in:
cy 2025-05-04 01:48:13 -04:00
parent a0794b0356
commit 0e97d11745

View file

@ -48,6 +48,8 @@
];
# for cpp bindings to work
NIX_INCLUDE_PATH = "${lib.getDev pkgs.nix}/include";
# skip integration tests (they need a connection to the nix store)
cargoTestExtraArgs = "--bins";
};
cargoArtifacts = craneLib.buildDepsOnly commonArgs;