| OLD | NEW |
| 1 [tox] | 1 [tox] |
| 2 envlist = py27 | 2 envlist = py27 |
| 3 skipsdist = true | 3 skipsdist = true |
| 4 | 4 |
| 5 [pytest] | 5 [pytest] |
| 6 # The names of the test files here don't start with 'test_' so we need | 6 # The names of the test files here don't start with 'test_' so we need |
| 7 # to instruct pytest to load tests from all files. | 7 # to instruct pytest to load tests from all files. |
| 8 python_files = *.py | 8 python_files = *.py |
| 9 | 9 |
| 10 [run] | 10 [run] |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 sitescripts/urlfixer/bin/forceDomains.py : A206,D205,D400,E501,N802 | 73 sitescripts/urlfixer/bin/forceDomains.py : A206,D205,D400,E501,N802 |
| 74 sitescripts/urlfixer/bin/topDomains.py : A206,D205,D400,E501,E711,F401,N802 | 74 sitescripts/urlfixer/bin/topDomains.py : A206,D205,D400,E501,E711,F401,N802 |
| 75 sitescripts/urlfixer/web/submitData.py : A206,E501,E711,F401,F841,N802,N806 | 75 sitescripts/urlfixer/web/submitData.py : A206,E501,E711,F401,F841,N802,N806 |
| 76 sitescripts/utils.py : A107,A301,D200,D202,D205,D208,D400,D401,E501,N801,N80
2,N806 | 76 sitescripts/utils.py : A107,A301,D200,D202,D205,D208,D400,D401,E501,N801,N80
2,N806 |
| 77 sitescripts/web.py : A107,E501,N802 | 77 sitescripts/web.py : A107,E501,N802 |
| 78 multiplexer.py : A107,E501 | 78 multiplexer.py : A107,E501 |
| 79 | 79 |
| 80 [testenv] | 80 [testenv] |
| 81 basepython=python2 | 81 basepython=python2 |
| 82 deps = | 82 deps = |
| 83 cryptography |
| 83 pytest | 84 pytest |
| 84 pytest-cov | 85 pytest-cov |
| 85 mock | 86 mock |
| 86 pytest-mock | 87 pytest-mock |
| 87 wsgi_intercept | 88 wsgi_intercept |
| 88 jinja2 | 89 jinja2 |
| 89 pycrypto | 90 pycrypto |
| 90 pysed | 91 pysed |
| 91 flake8 | 92 flake8 |
| 92 flake8-per-file-ignores | 93 flake8-per-file-ignores |
| (...skipping 11 matching lines...) Expand all Loading... |
| 104 '' .sitescripts.test --write | 105 '' .sitescripts.test --write |
| 105 python ensure_dependencies.py | 106 python ensure_dependencies.py |
| 106 py.test \ | 107 py.test \ |
| 107 --cov-config tox.ini --cov-report html --cov-report term --cov sitescrip
ts \ | 108 --cov-config tox.ini --cov-report html --cov-report term --cov sitescrip
ts \ |
| 108 sitescripts/hg/test \ | 109 sitescripts/hg/test \ |
| 109 sitescripts/notifications/test \ | 110 sitescripts/notifications/test \ |
| 110 sitescripts/stats/test \ | 111 sitescripts/stats/test \ |
| 111 sitescripts/formmail/test \ | 112 sitescripts/formmail/test \ |
| 112 sitescripts/extensions/test \ | 113 sitescripts/extensions/test \ |
| 113 sitescripts/subscriptions/test \ | 114 sitescripts/subscriptions/test \ |
| 115 sitescripts/reports/tests \ |
| 114 tests | 116 tests |
| 115 flake8 sitescripts multiplexer.py multiplexer.fcgi | 117 flake8 sitescripts multiplexer.py multiplexer.fcgi |
| OLD | NEW |