Left: | ||
Right: |
OLD | NEW |
---|---|
(Empty) | |
1 [tox] | |
2 envlist = py27,py35,py36,flake8 | |
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 | |
8 [testenv] | |
9 deps = | |
10 pytest | |
11 commands = | |
12 pytest tests | |
13 | |
14 [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 | |
16 deps = | |
17 flake8 | |
18 flake8-docstrings | |
19 pep8-naming | |
20 ../flake8-eyeo | |
21 commands = | |
22 flake8 cms-cmp.py tests | |
OLD | NEW |