From affa19e88dea4d2068a58d636d6a64762de4e1e4 Mon Sep 17 00:00:00 2001 From: David Mak Date: Thu, 9 Nov 2023 15:21:28 +0800 Subject: [PATCH] flake: Remove standalone execution of test cases This is now executed as part of cargo test. --- flake.nix | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/flake.nix b/flake.nix index bd8ad4f..50a4694 100644 --- a/flake.nix +++ b/flake.nix @@ -29,12 +29,10 @@ checkInputs = [ (pkgs.python3.withPackages(ps: [ ps.numpy ps.scipy ])) ]; checkPhase = '' - echo "Checking nac3standalone demos..." + echo "Running Cargo tests..." pushd nac3standalone/demo patchShebangs . - ./check_demos.sh popd - echo "Running Cargo tests..." cargoCheckHook ''; installPhase =