Prevent flake8 errors from getting suppressed

Flake8 errors, if present, do not show up if run_tests.sh is used. It is
used by Jenkins on creation of a pull request, upon which the tests fail
without flake8 specific information showing up in the log.
Adding PYTHONUNBUFFERED=1 before the flake8 command in run_tests.sh solves
this problem.

Change-Id: I040873b859cca7c0500bd7d600d8de6121cc70a5
Closes-Bug: #1747420
This commit is contained in:
Sourav Banerjee 2017-10-30 20:02:45 +05:30
parent 0c9b306104
commit 38528ca4d6

View File

@ -5,4 +5,4 @@
nosetests --exclude=mysql
nosetests --where=quark/tests/functional/mysql
nosetests --exclude=mysql --cover-package=quark --cover-erase
flake8 --show-source --builtins=_ quark
PYTHONUNBUFFERED=1 flake8 --show-source --builtins=_ quark