| Left: | ||
| Right: |
| OLD | NEW |
|---|---|
| 1 [tox] | 1 [tox] |
| 2 envlist = py27, py35 | 2 envlist = py27,py35,py36,flake8 |
| 3 | |
| 4 [flake8] | |
| 5 ignore = D1 | |
| 3 | 6 |
| 4 [testenv] | 7 [testenv] |
| 5 deps = | 8 deps = |
| 6 pytest | 9 pytest |
| 7 pytest-cov | 10 pytest-cov |
| 8 mock | 11 mock |
| 12 commands = | |
| 13 py.test --cov=patchconv --cov-report term-missing tests | |
| 14 | |
| 15 [testenv:flake8] | |
| 16 basepython = python3 | |
| 17 skip_install = true | |
|
Sebastian Noack
2017/10/11 03:30:44
Since this environment is only for linting, there
| |
| 18 deps = | |
| 9 flake8 | 19 flake8 |
| 20 flake8-docstrings | |
| 10 pep8-naming | 21 pep8-naming |
| 11 ../flake8-eyeo | 22 ../flake8-eyeo |
| 12 | |
| 13 commands = | 23 commands = |
| 14 py.test --cov=patchconv --cov-report term-missing tests | |
| 15 flake8 patchconv.py setup.py tests | 24 flake8 patchconv.py setup.py tests |
| OLD | NEW |