| Left: | ||
| Right: |
| 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 |
| 11 /cms/converters.py : A206,A302,D400,N802 | 11 /cms/converters.py : A206,A302,D400,N802 |
| 12 /cms/sources.py : A104,A107,A108,A206,A302,E501 | 12 /cms/sources.py : A104,A107,A108,A206,A302,E501 |
| 13 /cms/utils.py : A107,A302,E501 | 13 /cms/utils.py : A107,A302,E501 |
| 14 /runserver.spec : E501,F821 | 14 /runserver.spec : E501,F821 |
| 15 /tests/test_additional_paths.py : D401 | 15 /tests/test_additional_paths.py : D401 |
| 16 | 16 |
| 17 [testenv] | 17 [testenv] |
| 18 setenv = | 18 setenv = |
| 19 PYTHONPATH = {toxinidir} | 19 PYTHONPATH = {toxinidir} |
| 20 deps = | 20 deps = |
| 21 httplib2 | |
|
Vasily Kuznetsov
2018/09/26 15:45:27
Do we need httplib2 in addition to requests? Sorry
Tudor Avram
2018/10/04 06:48:16
Nope, we don't. Put that in at the very start, for
| |
| 21 flask | 22 flask |
| 22 jinja2 | 23 jinja2 |
| 23 urllib3 | 24 urllib3 |
| 24 markdown | 25 markdown |
| 25 pytest | 26 pytest |
| 26 pytest-cov | 27 pytest-cov |
| 27 mock | 28 mock |
| 28 wsgi_intercept | 29 wsgi_intercept |
| 29 flake8 | 30 flake8 |
| 30 flake8-per-file-ignores>=0.4 | 31 flake8-per-file-ignores>=0.4 |
| 31 flake8-docstrings | 32 flake8-docstrings |
| 32 flake8-commas | 33 flake8-commas |
| 33 pep8-naming | 34 pep8-naming |
| 34 hg+https://hg.adblockplus.org/codingtools#egg=flake8-eyeo&subdirectory=flake 8-eyeo | 35 hg+https://hg.adblockplus.org/codingtools#egg=flake8-eyeo&subdirectory=flake 8-eyeo |
| 36 requests | |
| 37 pytest-console-scripts | |
| 38 pytest-mock | |
| 35 | 39 |
| 36 commands = | 40 commands = |
| 37 py.test --cov-report term --cov-report html --cov=cms tests | 41 py.test --cov-report term --cov-report html --cov=cms --disable-warnings tes ts |
| 38 flake8 cms tests runserver.py runserver.spec | 42 flake8 cms tests runserver.py runserver.spec |
| OLD | NEW |