Exit CI run if the PEP-8 checks fail.

This commit is contained in:
Dave Page 2018-03-15 06:53:26 -04:00
parent faf243db71
commit 1e303dafdd

View File

@ -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