diff options
author | Scott Moser <smoser@ubuntu.com> | 2016-03-03 16:54:49 -0500 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2016-03-03 16:54:49 -0500 |
commit | da39ad69e3ee240df7354eb2c2f33bdaba9194f6 (patch) | |
tree | af3bbaf35c2bfad074c5136bffc92caebed8fd31 /tox.ini | |
parent | f4c25ab96c572e0a503bb211a11cd2641ac321a3 (diff) | |
parent | b1046db66bbed6a063f218992449b8abfd1ae99b (diff) | |
download | vyos-cloud-init-da39ad69e3ee240df7354eb2c2f33bdaba9194f6.tar.gz vyos-cloud-init-da39ad69e3ee240df7354eb2c2f33bdaba9194f6.zip |
merge with trunk
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 |