Left: | ||
Right: |
LEFT | RIGHT |
---|---|
1 [tox] | 1 [tox] |
2 envlist = py27 | 2 envlist = py27 |
rhowell
2018/08/16 21:07:55
Unrelated, but why is this only testing Python 2?
| |
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 = flask | 20 deps = |
rhowell
2018/08/16 21:07:55
Maybe leave this on two different lines? Looks lik
Jon Sonesen
2018/08/16 21:10:41
Acknowledged.
| |
21 flask | |
21 jinja2 | 22 jinja2 |
22 urllib3 | 23 urllib3 |
23 markdown | 24 markdown |
24 pytest | 25 pytest |
25 pytest-cov | 26 pytest-cov |
26 mock | 27 mock |
Vasily Kuznetsov
2018/08/17 11:56:24
You don't really need to replace this dependency.
Jon Sonesen
2018/08/17 17:27:51
My bad, I just pushed this :/ in the docs they men
| |
27 wsgi_intercept | 28 wsgi_intercept |
28 flake8 | 29 flake8 |
29 flake8-per-file-ignores>=0.4 | 30 flake8-per-file-ignores>=0.4 |
30 flake8-docstrings | 31 flake8-docstrings |
31 flake8-commas | 32 flake8-commas |
32 pep8-naming | 33 pep8-naming |
33 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 |
34 | 35 |
35 commands = | 36 commands = |
36 py.test --cov-report term --cov-report html --cov=cms tests | 37 py.test --cov-report term --cov-report html --cov=cms tests |
37 flake8 cms tests runserver.py runserver.spec | 38 flake8 cms tests runserver.py runserver.spec |
LEFT | RIGHT |