summaryrefslogtreecommitdiffstats
path: root/jjb/releng-macros.yaml
diff options
context:
space:
mode:
authorTrevor Bramwell <tbramwell@linuxfoundation.org>2016-07-21 08:42:32 -0700
committerTrevor Bramwell <tbramwell@linuxfoundation.org>2016-07-21 08:50:44 -0700
commit74ef5a48f4fc47039e230f4bb669ffca150fe203 (patch)
treea09ccd3f3dc3ae00a79c0daa1170380a1d64931a /jjb/releng-macros.yaml
parent6e3de12d3a2027b6a135986301ab3e6b1d9998d5 (diff)
Enable Flake8 Checks on QTIP
Add '.tox' to list of directories to ignore since it contains unrelated python code in virtualenvs. JIRA: QTIP-89 Change-Id: I577c4ea61fe6b76f7f67ec7c9d4af544d0f73f71 Signed-off-by: Trevor Bramwell <tbramwell@linuxfoundation.org>
Diffstat (limited to 'jjb/releng-macros.yaml')
-rw-r--r--jjb/releng-macros.yaml2
1 files changed, 2 insertions, 0 deletions
diff --git a/jjb/releng-macros.yaml b/jjb/releng-macros.yaml
index 7733abac4..a69badbf4 100644
--- a/jjb/releng-macros.yaml
+++ b/jjb/releng-macros.yaml
@@ -349,6 +349,7 @@
# empty string: ""
FLAKE_COUNT="$(find . \
-path './releng_flake8' -prune -o \
+ -path './.tox' -prune -o \
-type f -name "*.py" -print | \
xargs flake8 --exit-zero -qq --count 2>&1)"
@@ -359,6 +360,7 @@
echo "Flake8 Violations: $FLAKE_COUNT" > lint.log
find . \
-path './releng_flake8' -prune -o \
+ -path './.tox' -prune -o \
-type f -name "*.py" -print | \
xargs flake8 --exit-zero --first >> violation.log
SHOWN=$(wc -l violation.log | cut -d' ' -f1)