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 ca384e6bd6
commit 2e44e34b52
1 changed files with 1 additions and 3 deletions

View File

@ -24,12 +24,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 =