diff --git a/tox.ini b/tox.ini
index 0d81ee4491ea92fbd40c36b9976f9fa786d00956..a65cc19bc4c27ed963a1c2cd35f52dfe2a91f0e7 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,5 +1,5 @@
 [tox]
-envlist = py26,py27,pypy,py32,py33,docs,pep8
+envlist = py26,py27,pypy,py32,py33,docs,meta
 
 [testenv]
 deps =
@@ -19,9 +19,11 @@ commands =
     sphinx-build -W -b doctest -d {envtmpdir}/doctrees docs docs/_build/html
     sphinx-build -W -b linkcheck docs docs/_build/html
 
-[testenv:pep8]
-deps = flake8
-commands = flake8 .
+[testenv:meta]
+deps =
+    flake8
+commands =
+    flake8 .
 
 [flake8]
 select = E,W,F