diff options
author | Adam Chainz <adam@adamj.eu> | 2016-08-16 18:25:00 +0100 |
---|---|---|
committer | Adam Chainz <adam@adamj.eu> | 2016-08-16 18:25:00 +0100 |
commit | cddab4731afe2012f15bd89ff84acbe1203fa744 (patch) | |
tree | a7d89459291d44cff54845f560bd0b8cdca07a78 /tox.ini | |
parent | b180ebc5de10c0633ce8bf9b68ec4d0889097c8c (diff) | |
download | pymemcache-cddab4731afe2012f15bd89ff84acbe1203fa744.tar.gz |
Lint with Python 3.4 too
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -1,5 +1,5 @@ [tox] -envlist = py26, py27, pypy, pypy3, py33, py34, docs, flake8 +envlist = py26, py27, pypy, pypy3, py33, py34, docs, py27-flake8, py34-flake8 [testenv] commands = @@ -7,7 +7,12 @@ commands = pip install -e . py.test {posargs:pymemcache/test/} -[testenv:flake8] +[testenv:py27-flake8] +commands = + pip install flake8 + flake8 pymemcache/ + +[testenv:py34-flake8] commands = pip install flake8 flake8 pymemcache/ |