From e5bf326c3916554620eb2a2f3725237c7e454b43 Mon Sep 17 00:00:00 2001 From: Monty Taylor Date: Sun, 19 May 2013 19:59:15 -0400 Subject: [PATCH] Update run_tests.sh to run flake8 too. Change-Id: I6fce8ef0a293fb92c7e0ceb4ef88284e93022b54 --- run_tests.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/run_tests.sh b/run_tests.sh index 258483ea2770..c8513749f312 100755 --- a/run_tests.sh +++ b/run_tests.sh @@ -172,8 +172,8 @@ function copy_subunit_log { } function run_pep8 { - echo "Running PEP8 and HACKING compliance check..." - bash -c "${wrapper} tools/run_pep8.sh" + echo "Running flake8 ..." + bash -c "${wrapper} flake8" }