Skip to content
Snippets Groups Projects
Commit f8aa6ea1 authored by Jean Simatic's avatar Jean Simatic
Browse files

Fix test syntax

parent 026091c8
No related tags found
1 merge request!1Feature/test tutorial
Pipeline #33070 failed
...@@ -123,7 +123,7 @@ for module_name in "${ordered_list[@]}"; do ...@@ -123,7 +123,7 @@ for module_name in "${ordered_list[@]}"; do
done done
# Top level test # Top level test
if [[ "${OPT_PYTHON_MODULES}" == "y" -a "${OPT_WITH_TESTS}" == "ON" ]]; then if [ "${OPT_PYTHON_MODULES}" == "y" ] && [ "${OPT_WITH_TESTS}" == "ON" ]; then
echo "Running tutorials" echo "Running tutorials"
python -m pip install matplotlib nbconvert ipykernel -v python -m pip install matplotlib nbconvert ipykernel -v
python -m nbconvert --to script --execute examples/tutorials/Aidge_tutorial/load_and_run.ipynb python -m nbconvert --to script --execute examples/tutorials/Aidge_tutorial/load_and_run.ipynb
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment