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 | 6 ignore = D1,C815 |
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/test_server.py : A101,A107,A302,E501,F401 | 9 /cms/bin/test_server.py : A101,A107,A302,E501,F401 |
10 /cms/bin/translate.py : A107,A301,A302,E501,F821 | 10 /cms/bin/translate.py : A107,A301,A302,E501,F821 |
(...skipping 14 matching lines...) Expand all Loading... |
25 pytest | 25 pytest |
26 pytest-cov | 26 pytest-cov |
27 mock | 27 mock |
28 wsgi_intercept | 28 wsgi_intercept |
29 flake8 | 29 flake8 |
30 flake8-per-file-ignores>=0.4 | 30 flake8-per-file-ignores>=0.4 |
31 flake8-docstrings | 31 flake8-docstrings |
32 flake8-commas | 32 flake8-commas |
33 pep8-naming | 33 pep8-naming |
34 hg+https://hg.adblockplus.org/codingtools#egg=flake8-eyeo&subdirectory=flake
8-eyeo | 34 hg+https://hg.adblockplus.org/codingtools#egg=flake8-eyeo&subdirectory=flake
8-eyeo |
| 35 pytest-console-scripts |
35 | 36 |
36 commands = | 37 commands = |
37 py.test --cov-report term --cov-report html --cov=cms tests | 38 py.test --cov-report term --cov-report html --cov=cms tests |
38 flake8 cms tests runserver.py runserver.spec | 39 flake8 cms tests runserver.py runserver.spec |
OLD | NEW |