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 pep8-naming | 10 pep8-naming |
11 ../flake8-abp | 11 ../flake8-abp |
12 | 12 |
13 commands = | 13 commands = |
14 py.test --cov=patchconv --cov-report term-missing tests | 14 py.test --cov=patchconv --cov-report term-missing tests |
15 flake8 patchconv.py setup.py tests/test_rietveld_to_git.py | 15 flake8 patchconv.py setup.py tests |
Sebastian Noack
2016/05/12 23:48:51
Note that flake8 can automatically find Python fil
Vasily Kuznetsov
2016/05/17 15:57:30
This is nice, but in my opinion a bit too implicit
| |
LEFT | RIGHT |