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 | 6 ignore = D1,C815,W503,W504 |
7 per-file-ignores = | 7 per-file-ignores = |
8 cms/bin/generate_static_pages.py : A107,A301,A302,E501 | 8 cms/bin/generate_static_pages.py : A107,A301,A302,E501 |
9 cms/bin/translate.py : A107,A301,A302,E501,F821 | 9 cms/bin/translate.py : A107,A301,A302,E501,F821 |
10 cms/converters.py : A206,A302,D400,N802 | 10 cms/converters.py : A206,A302,D400,N802 |
11 cms/sources.py : A104,A107,A108,A206,A302,E501 | 11 cms/sources.py : A104,A107,A108,A206,A302,E501 |
12 cms/utils.py : A107,A302,E501 | 12 cms/utils.py : A107,A302,E501 |
13 runserver.spec : E501,F821 | 13 runserver.spec : E501,F821 |
14 tests/test_additional_paths.py : D401 | 14 tests/test_additional_paths.py : D401 |
15 | 15 |
16 [testenv] | 16 [testenv] |
(...skipping 13 matching lines...) Expand all Loading... |
30 flake8-commas | 30 flake8-commas |
31 pep8-naming<=0.7.0 | 31 pep8-naming<=0.7.0 |
32 hg+https://hg.adblockplus.org/codingtools#egg=flake8-eyeo&subdirectory=flake
8-eyeo | 32 hg+https://hg.adblockplus.org/codingtools#egg=flake8-eyeo&subdirectory=flake
8-eyeo |
33 requests | 33 requests |
34 pytest-console-scripts | 34 pytest-console-scripts |
35 pytest-mock | 35 pytest-mock |
36 | 36 |
37 commands = | 37 commands = |
38 py.test --cov-report term --cov-report html --cov=cms tests | 38 py.test --cov-report term --cov-report html --cov=cms tests |
39 flake8 cms tests runserver.py runserver.spec | 39 flake8 cms tests runserver.py runserver.spec |
OLD | NEW |