diff options
author | Scott Moser <smoser@ubuntu.com> | 2016-03-03 14:26:00 -0500 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2016-03-03 14:26:00 -0500 |
commit | 42d3efe69caeb2bb1ebdd67f1bae3e8f2134ff85 (patch) | |
tree | 31f921f29748fb79b961c5256f5eea3f92bc7b1c /tox.ini | |
parent | 97efb9d48197d7098f1abe2ee519418afbe6aec5 (diff) | |
parent | 112d25e6b2a20e8e39c1f22f6a30e0130616c64f (diff) | |
download | vyos-cloud-init-42d3efe69caeb2bb1ebdd67f1bae3e8f2134ff85.tar.gz vyos-cloud-init-42d3efe69caeb2bb1ebdd67f1bae3e8f2134ff85.zip |
fix pyflakes reported issues, and run it during package build and tox.
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -1,5 +1,5 @@ [tox] -envlist = py27,py3 +envlist = py27,py3,pyflakes recreate = True [testenv] @@ -10,6 +10,10 @@ deps = -r{toxinidir}/test-requirements.txt [testenv:py3] basepython = python3 +[testenv:pyflakes] +basepython = python3 +commands = {envpython} -m pyflakes {posargs:cloudinit/ tests/ tools/} + # https://github.com/gabrielfalcao/HTTPretty/issues/223 setenv = LC_ALL = en_US.utf-8 |