| Index: patchconv/tox.ini |
| =================================================================== |
| --- a/patchconv/tox.ini |
| +++ b/patchconv/tox.ini |
| @@ -1,15 +1,22 @@ |
| [tox] |
| -envlist = py27, py35 |
| +envlist = py27,py35,py36,flake8 |
|
Sebastian Noack
2017/10/09 02:08:58
py36 was missing here. I added it while unifying t
|
| + |
| +[flake8] |
| +ignore = D1 |
| [testenv] |
| deps = |
| pytest |
| pytest-cov |
| mock |
| +commands = |
| + py.test --cov=patchconv --cov-report term-missing tests |
| + |
| +[testenv:flake8] |
| +deps = |
| flake8 |
| + flake8-docstrings |
| pep8-naming |
| ../flake8-eyeo |
| - |
| commands = |
| - py.test --cov=patchconv --cov-report term-missing tests |
| flake8 patchconv.py setup.py tests |