| Left: | ||
| Right: |
| LEFT | RIGHT |
|---|---|
| 1 [tox] | 1 [tox] |
| 2 envlist = py27,py35,py36,flake8 | 2 envlist = py27,py35,py36,flake8 |
| 3 skipsdist = true | 3 skipsdist = true |
| 4 | |
| 5 [flake8] | |
| 6 ignore = D1 | |
|
tlucas
2017/11/24 10:57:46
Do we want to keep ignoring all D1 errors in new c
Vasily Kuznetsov
2017/11/28 16:53:37
This is not really a public API, but I agree with
Vasily Kuznetsov
2017/11/28 16:53:37
Done.
| |
| 7 | 4 |
| 8 [testenv] | 5 [testenv] |
| 9 deps = | 6 deps = |
| 10 pytest | 7 pytest |
| 11 commands = | 8 commands = |
| 12 pytest tests | 9 pytest tests |
| 13 | 10 |
| 14 [testenv:flake8] | 11 [testenv:flake8] |
|
tlucas
2017/11/24 10:57:46
Something is screwy in here.
running "$ tox" yiel
Vasily Kuznetsov
2017/11/28 16:53:37
Done.
| |
| 15 basepython = python3 | 12 basepython = python3 |
| 16 deps = | 13 deps = |
| 17 flake8 | 14 flake8 |
| 18 flake8-docstrings | 15 flake8-docstrings |
| 19 pep8-naming | 16 pep8-naming |
| 20 ../flake8-eyeo | 17 ../flake8-eyeo |
| 21 commands = | 18 commands = |
| 22 flake8 cms-cmp.py tests | 19 flake8 cms-cmp.py |
| 20 flake8 --ignore=D1 tests | |
| LEFT | RIGHT |