From 4f6f98bfc1ca24e9adb4e3ac5d2b9a6287f39d73 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Feb 21 2017 10:59:22 +0000 Subject: No longer check the return code, set -e takes care of it --- diff --git a/run_ci_tests.sh b/run_ci_tests.sh index f59df15..c2ff8d6 100755 --- a/run_ci_tests.sh +++ b/run_ci_tests.sh @@ -53,10 +53,8 @@ PAGURE_CONFIG=`pwd`/tests/test_config \ PYTHONPATH=pagure \ ./nosetests -v --with-xcoverage --cover-erase --cover-package=pagure -if [ "$?" = "0" ]; then - set +e +set +e - PYTHONPATH=pagure pylint -f parseable pagure | tee pylint.out - pep8 pagure/*.py pagure/*/*.py | tee pep8.out +PYTHONPATH=pagure pylint -f parseable pagure | tee pylint.out +pep8 pagure/*.py pagure/*/*.py | tee pep8.out -fi