From: Trevor Bramwell Date: Mon, 10 Dec 2018 17:23:57 +0000 (-0800) Subject: Add Tox commands to lint Python code X-Git-Tag: 2.0.99~152^2 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=1f1d078a0846f4903c2425a30da86933221e2cb9;p=laas.git Add Tox commands to lint Python code This adds tox jobs for running flake8. Flake8 is a syntax analyzer for python source code that combines the tools pyflakes and pep8 into one. This tool can be used to find syntax issues, unnecessary imports, and style violations, which all improve the code quality and readability. Change-Id: I7521c3a43ef4599eb12fd72e87a0c6ec0df61e7a Signed-off-by: Trevor Bramwell --- diff --git a/tox.ini b/tox.ini new file mode 100644 index 0000000..3d01e10 --- /dev/null +++ b/tox.ini @@ -0,0 +1,21 @@ +[tox] +envlist = flake8 +skipsdist = True + +[testenv] +deps = -rrequirements.txt +basepython = python3 + +# Store flake8 config here intead of .flake8 +[flake8] +ignore = + # Ignore 'line-too-long' warnings + E501 +exclude = + src/manage.py + +[testenv:flake8] +deps = + -rrequirements.txt + flake8 +commands = flake8 src/