flake: Remove standalone execution of test cases

This is now executed as part of cargo test.
enhance/cargo-test-standalone-demos
David Mak 2023-11-09 15:21:28 +08:00
parent ea121673d3
commit affa19e88d
1 changed files with 1 additions and 3 deletions

View File

@ -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 =