Index: flake8-eyeo/tox.ini |
=================================================================== |
--- a/flake8-eyeo/tox.ini |
+++ b/flake8-eyeo/tox.ini |
@@ -1,11 +1,21 @@ |
[tox] |
-envlist=py{27,35,36}-flake8{2,3} |
+envlist = py{27,35,36}-flake8{2,3},flake8 |
+ |
+[flake8] |
+ignore = D1,N802 |
[testenv] |
-deps= |
+deps = |
flake82: flake8==2.* |
flake83: flake8==3.* |
+commands = |
+ python setup.py test |
+ |
+[testenv:flake8] |
+basepython = python3 |
+deps = |
+ flake8 |
+ flake8-docstrings |
pep8-naming |
-commands= |
- python setup.py test |
- flake8 flake8_eyeo.py setup.py --ignore N802 |
+commands = |
+ flake8 flake8_eyeo.py setup.py |