summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Chainz <adam@adamj.eu>2016-08-16 18:25:00 +0100
committerAdam Chainz <adam@adamj.eu>2016-08-16 18:25:00 +0100
commitcddab4731afe2012f15bd89ff84acbe1203fa744 (patch)
treea7d89459291d44cff54845f560bd0b8cdca07a78
parentb180ebc5de10c0633ce8bf9b68ec4d0889097c8c (diff)
downloadpymemcache-cddab4731afe2012f15bd89ff84acbe1203fa744.tar.gz
Lint with Python 3.4 too
-rw-r--r--tox.ini9
1 files changed, 7 insertions, 2 deletions
diff --git a/tox.ini b/tox.ini
index 4ee7b65..5b067dc 100644
--- a/tox.ini
+++ b/tox.ini
@@ -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/