flake: Remove standalone execution of test cases

This is now executed as part of cargo test.
David Mak 2023-11-09 15:21:28 +08:00
parent ad183ae21c
commit 2244f347c3
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 =