OLD | NEW |
1 [tox] | 1 [tox] |
2 envlist = py27 | 2 envlist = py27 |
3 skipsdist = true | 3 skipsdist = true |
4 | 4 |
5 [flake8] | 5 [flake8] |
6 ignore = D1,C815,W503 | |
7 per-file-ignores = | 6 per-file-ignores = |
8 /cms/bin/generate_static_pages.py : A107,A301,A302,E501 | 7 /cms/bin/generate_static_pages.py : A107,A301,A302,E501 |
9 /cms/bin/translate.py : A107,A301,A302,E501,F821 | 8 /cms/bin/translate.py : A107,A301,A302,E501,F821 |
10 /cms/converters.py : A206,A302,D400,N802 | 9 /cms/converters.py : A206,A302,D400,N802 |
11 /cms/sources.py : A104,A107,A108,A206,A302,E501 | 10 /cms/sources.py : A104,A107,A108,A206,A302,E501 |
12 /cms/utils.py : A107,A302,E501 | 11 /cms/utils.py : A107,A302,E501 |
13 /runserver.spec : E501,F821 | 12 /runserver.spec : E501,F821 |
14 /tests/test_additional_paths.py : D401 | 13 /tests/test_additional_paths.py : D401 |
15 | 14 |
16 [testenv] | 15 [testenv] |
17 setenv = | 16 setenv = |
18 PYTHONPATH = {toxinidir} | 17 PYTHONPATH = {toxinidir} |
19 deps = | 18 deps = |
20 flask | 19 flask |
21 jinja2 | 20 jinja2 |
22 urllib3 | 21 urllib3 |
23 markdown | 22 markdown |
24 pytest | 23 pytest |
25 pytest-cov | 24 pytest-cov |
26 mock | 25 mock |
27 wsgi_intercept | 26 wsgi_intercept |
28 flake8 | |
29 flake8-per-file-ignores>=0.4 | |
30 flake8-docstrings | |
31 flake8-commas | |
32 pep8-naming | |
33 hg+https://hg.adblockplus.org/codingtools#egg=flake8-eyeo&subdirectory=flake
8-eyeo | |
34 requests | 27 requests |
35 pytest-console-scripts | 28 pytest-console-scripts |
36 pytest-mock | 29 pytest-mock |
| 30 hg+https://hg.adblockplus.org/codingtools#egg=flake8-eyeo&subdirectory=flake
8-eyeo |
| 31 flake8-per-file-ignores>=0.4 |
37 | 32 |
38 commands = | 33 commands = |
39 py.test --cov-report term --cov-report html --cov=cms tests | 34 py.test --cov-report term --cov-report html --cov=cms tests |
40 flake8 cms tests runserver.py runserver.spec | 35 flake8 cms tests runserver.py runserver.spec |
OLD | NEW |