| Left: | ||
| Right: |
| LEFT | RIGHT |
|---|---|
| 1 [tox] | 1 [tox] |
| 2 envlist = py27, py35 | 2 envlist = py27, py35 |
| 3 | 3 |
| 4 [testenv] | 4 [testenv] |
| 5 deps = | 5 deps = |
| 6 pytest | 6 pytest |
| 7 pytest-cov | 7 pytest-cov |
| 8 mock | 8 mock |
| 9 flake8 | 9 flake8 |
| 10 hg+https://hg.adblockplus.org/codingtools#egg=flake8-abp&subdirectory=flake8 -abp | 10 pep8-naming |
|
Sebastian Noack
2016/05/12 21:44:26
Assuming this code goes into the coding tools repo
Sebastian Noack
2016/05/12 21:44:27
What's about pep8-naming?
Vasily Kuznetsov
2016/05/12 23:25:16
Added.
Vasily Kuznetsov
2016/05/12 23:25:16
Seems to work. Ok, that's simpler.
| |
| 11 ../flake8-abp | |
| 11 | 12 |
| 12 commands = | 13 commands = |
| 13 py.test --cov=patchconv --cov-report term-missing tests | 14 py.test --cov=patchconv --cov-report term-missing tests |
| 14 flake8 patchconv.py | 15 flake8 patchconv.py setup.py tests |
|
Sebastian Noack
2016/05/12 21:44:27
Please also run flake8 on tests and setup.py.
Vasily Kuznetsov
2016/05/12 23:25:16
Oops, somehow that fell through the cracks.
Done.
| |
| LEFT | RIGHT |