Select Git revision
create_JupyterLab_kernel.sh
Forked from
EBRAINS RI / Tech Hub / Platform / EBRAINS Software Distribution / ebrains-spack-builds
Source project has a limited visibility.
verify.sh 468 B
#!/bin/bash
# This script is designed for local usage.
# Ignore generated files.
export IGNORE_LINT="platform_venv|hbp_nrp_music_xml/hbp_nrp_music_xml/schema/generated"
# This script only runs static code analysis, the tests can be run separately using run_tests.sh
make run_pep8 run_pylint
RET=$?
if [ $RET == 0 ]; then
echo -e "\033[32mVerify sucessfull.\e[0m Run ./run_tests.sh to run the tests."
else
echo -e "\033[31mVerify failed.\e[0m"
fi
exit $RET