From 1e303dafdde5eb4f5dfe966dc051acf65c15d645 Mon Sep 17 00:00:00 2001 From: Dave Page Date: Thu, 15 Mar 2018 06:53:26 -0400 Subject: [PATCH] Exit CI run if the PEP-8 checks fail. --- ci/run_python_tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/run_python_tests.sh b/ci/run_python_tests.sh index d25bdc8ca..1d55935f8 100755 --- a/ci/run_python_tests.sh +++ b/ci/run_python_tests.sh @@ -29,7 +29,7 @@ $WORKSPACE/pgadmin-venv/bin/pip install -r web/regression/requirements.txt || { echo "Running PEP-8 checks..." echo -make check-pep8 +make check-pep8 || { echo 'ERROR: Error detected when running the Python PEP-8 checks.' ; exit 1; } echo "Running regression tests..." echo