From 7cbdb19779ace32a59a8206e3848c3aa2866c881 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Feb 15 2017 17:53:01 +0000 Subject: Ignore return code from pylint and pep8 --- diff --git a/run_ci_tests.sh b/run_ci_tests.sh index 1e5d32d..4143ed1 100755 --- a/run_ci_tests.sh +++ b/run_ci_tests.sh @@ -50,6 +50,6 @@ python setup.py build PYTHONPATH=pagure ./nosetests -v --with-xcoverage --cover-erase --cover-package=pagure -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 || true +pep8 pagure/*.py pagure/*/*.py | tee pep8.out || true