-
Kenny Sharma authored
Added repository structure to support build/release of python packages by Jenkins for use in ExDBackend. Initial commit of modified MUSIC XML configuration generation/handling code by Martin Schulze towards supporting [NRRPLT-3895]. Change-Id: I0b526dc3608ddb04fa5d724aa22c921f4e2787d1
2ba896d8
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