Remove existing include directory

This commit is contained in:
Devon Mackay
2018-07-11 09:18:49 -04:00
parent 726946f9c9
commit 78c8239422
10 changed files with 0 additions and 259 deletions

View File

@@ -1,17 +0,0 @@
# run_test: Execute code checkers and unit tests
# Load test functions
source ./script/include/test_functions.inc.sh
## Set option defaults
# If PYTHON_FILES is not set, give it the default value of "app.py"
if [ -z "${PYTHON_FILES+is_set}" ]; then
PYTHON_FILES="app.py"
fi
## Main
if [ "${RUN_PYTHON_TESTS}" = "true" ]; then
run_python_lint "${PYTHON_FILES}"
run_python_static_analysis "${PYTHON_FILES}"
run_python_unit_tests "${PYTHON_FILES}"
fi