| 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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 sitescripts/subscriptions/bin/updateSubscriptionDownloadsCVS.py : E501 | 61 sitescripts/subscriptions/bin/updateSubscriptionDownloadsCVS.py : E501 |
| 62 sitescripts/subscriptions/combineSubscriptions.py : A102,A104,A105,A107,A206
,A301,A302,E501,E713 | 62 sitescripts/subscriptions/combineSubscriptions.py : A102,A104,A105,A107,A206
,A301,A302,E501,E713 |
| 63 sitescripts/subscriptions/knownIssuesParser.py : A107,A201,E501,E711,E713,N8
02,N806 | 63 sitescripts/subscriptions/knownIssuesParser.py : A107,A201,E501,E711,E713,N8
02,N806 |
| 64 sitescripts/subscriptions/subscriptionParser.py : A102,A107,A206,A302,E501,E
711,N802,N803,N805 | 64 sitescripts/subscriptions/subscriptionParser.py : A102,A107,A206,A302,E501,E
711,N802,N803,N805 |
| 65 sitescripts/subscriptions/web/fallback.py : A107,A206,A301,E501,F401,N802,N8
06 | 65 sitescripts/subscriptions/web/fallback.py : A107,A206,A301,E501,F401,N802,N8
06 |
| 66 sitescripts/templateFilters.py : A107,A112,A206,E501,E711,F401,F841,N802,N80
3,N806 | 66 sitescripts/templateFilters.py : A107,A112,A206,E501,E711,F401,F841,N802,N80
3,N806 |
| 67 sitescripts/testpages/web/sitekey_frame.py : A107 | 67 sitescripts/testpages/web/sitekey_frame.py : A107 |
| 68 sitescripts/urlfixer/bin/forceDomains.py : A206,E501,N802 | 68 sitescripts/urlfixer/bin/forceDomains.py : A206,E501,N802 |
| 69 sitescripts/urlfixer/bin/topDomains.py : A206,E501,E711,F401,N802 | 69 sitescripts/urlfixer/bin/topDomains.py : A206,E501,E711,F401,N802 |
| 70 sitescripts/urlfixer/web/submitData.py : A206,E501,E711,F401,F841,N802,N806 | 70 sitescripts/urlfixer/web/submitData.py : A206,E501,E711,F401,F841,N802,N806 |
| 71 sitescripts/utils.py : A107,A301,E501,E713,N801,N802,N806 | 71 sitescripts/utils.py : A107,A301,E501,N801,N802,N806 |
| 72 sitescripts/web.py : A107,E501,N802 | 72 sitescripts/web.py : A107,E501,N802 |
| 73 multiplexer.py : A107,E501 | 73 multiplexer.py : A107,E501 |
| 74 | 74 |
| 75 [testenv] | 75 [testenv] |
| 76 basepython=python2 | 76 basepython=python2 |
| 77 deps = | 77 deps = |
| 78 pytest | 78 pytest |
| 79 pytest-cov | 79 pytest-cov |
| 80 mock | 80 mock |
| 81 pytest-mock | 81 pytest-mock |
| (...skipping 16 matching lines...) Expand all Loading... |
| 98 -r sitescripts\.(reports|testpages|crawler|urlfixer)\.web.* \ | 98 -r sitescripts\.(reports|testpages|crawler|urlfixer)\.web.* \ |
| 99 '' .sitescripts.test --write | 99 '' .sitescripts.test --write |
| 100 python ensure_dependencies.py | 100 python ensure_dependencies.py |
| 101 py.test \ | 101 py.test \ |
| 102 --cov-config tox.ini --cov-report html --cov-report term --cov sitescrip
ts \ | 102 --cov-config tox.ini --cov-report html --cov-report term --cov sitescrip
ts \ |
| 103 sitescripts/hg/test \ | 103 sitescripts/hg/test \ |
| 104 sitescripts/notifications/test \ | 104 sitescripts/notifications/test \ |
| 105 sitescripts/stats/test \ | 105 sitescripts/stats/test \ |
| 106 sitescripts/formmail/test \ | 106 sitescripts/formmail/test \ |
| 107 sitescripts/extensions/test \ | 107 sitescripts/extensions/test \ |
| 108 sitescripts/subscriptions/test | 108 sitescripts/subscriptions/test \ |
| 109 tests |
| 109 flake8 sitescripts multiplexer.py multiplexer.fcgi | 110 flake8 sitescripts multiplexer.py multiplexer.fcgi |
| OLD | NEW |