WIP: Run standalone demos as part of Cargo Test #356
|
@ -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
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.