summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorScott Moser <smoser@ubuntu.com>2016-03-03 14:26:00 -0500
committerScott Moser <smoser@ubuntu.com>2016-03-03 14:26:00 -0500
commit42d3efe69caeb2bb1ebdd67f1bae3e8f2134ff85 (patch)
tree31f921f29748fb79b961c5256f5eea3f92bc7b1c /tox.ini
parent97efb9d48197d7098f1abe2ee519418afbe6aec5 (diff)
parent112d25e6b2a20e8e39c1f22f6a30e0130616c64f (diff)
downloadvyos-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.ini6
1 files changed, 5 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index b72df0c9..fd65f6ef 100644
--- a/tox.ini
+++ b/tox.ini
@@ -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