flake: Remove standalone execution of test cases
This is now executed as part of cargo test.
This commit is contained in:
parent
ea121673d3
commit
affa19e88d
|
@ -29,12 +29,10 @@
|
||||||
checkInputs = [ (pkgs.python3.withPackages(ps: [ ps.numpy ps.scipy ])) ];
|
checkInputs = [ (pkgs.python3.withPackages(ps: [ ps.numpy ps.scipy ])) ];
|
||||||
checkPhase =
|
checkPhase =
|
||||||
''
|
''
|
||||||
echo "Checking nac3standalone demos..."
|
echo "Running Cargo tests..."
|
||||||
pushd nac3standalone/demo
|
pushd nac3standalone/demo
|
||||||
patchShebangs .
|
patchShebangs .
|
||||||
./check_demos.sh
|
|
||||||
popd
|
popd
|
||||||
echo "Running Cargo tests..."
|
|
||||||
cargoCheckHook
|
cargoCheckHook
|
||||||
'';
|
'';
|
||||||
installPhase =
|
installPhase =
|
||||||
|
|
Loading…
Reference in New Issue