From 8d14435991e5f715ef8e88acebd8fc55b940ebb2 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Feb 15 2017 18:22:04 +0000 Subject: Try another way to check the test results --- diff --git a/run_ci_tests.sh b/run_ci_tests.sh index 4143ed1..b701f9c 100755 --- a/run_ci_tests.sh +++ b/run_ci_tests.sh @@ -44,12 +44,14 @@ trap deactive SIGINT SIGTERM EXIT # Reload where the nosetests app is (within the venv) hash -r -set -e python setup.py build PYTHONPATH=pagure ./nosetests -v --with-xcoverage --cover-erase --cover-package=pagure -PYTHONPATH=pagure pylint -f parseable pagure | tee pylint.out || true -pep8 pagure/*.py pagure/*/*.py | tee pep8.out || true +if [ "$?" = "0" ]; then + PYTHONPATH=pagure pylint -f parseable pagure | tee pylint.out + pep8 pagure/*.py pagure/*/*.py | tee pep8.out + +fi