aboutsummaryrefslogtreecommitdiffstats
path: root/checks.py
diff options
context:
space:
mode:
authorsteven stark <steven.stark@att.com>2019-06-05 20:53:58 +0000
committerGerrit Code Review <gerrit@onap.org>2019-06-05 20:53:58 +0000
commit5f9c956c157b106014e7b5104a799c4fb818dba1 (patch)
treea73abb343ae1efc5a63a55f4c52a0022499d178e /checks.py
parent4a071acd7eb15d73291d7badc297c248262f76d7 (diff)
parentda26f1709fa5406ee3efebdb82d2c43fcf0122a1 (diff)
Merge "[VVP] Performance Enhancements (report generation and test collection)"
Diffstat (limited to 'checks.py')
-rw-r--r--checks.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/checks.py b/checks.py
index 70bdcd2..6f508eb 100644
--- a/checks.py
+++ b/checks.py
@@ -167,7 +167,9 @@ def check_non_testable_requirements_are_not_mapped():
def check_flake8_passes():
- result = subprocess.run(["flake8", "."], encoding="utf-8", capture_output=True)
+ result = subprocess.run(["flake8", "."], encoding="utf-8",
+ stdout=subprocess.PIPE,
+ stderr=subprocess.PIPE)
msgs = result.stdout.split("\n") if result.returncode != 0 else []
return ["flake8 errors detected:"] + [f" {e}" for e in msgs] if msgs else []