WIP: Run standalone demos as part of Cargo Test #356
|
@ -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 =
|
||||
|
|
Loading…
Reference in New Issue
Just remove pushd/popd and do
patchShebangs nac3standalone/demo
?But I thought the plan was to remove shell scripts anyway. Then there are no shebangs to patch?
Yeah it's not ready yet, that push was just a rebase.
Marked WIP now for clarity.