| 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 test from all files. | 7 # to instruct pytest to load test from all files. |
| 8 python_files = *.py | 8 python_files = *.py |
| 9 | 9 |
| 10 [run] | 10 [run] |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 jinja2 | 84 jinja2 |
| 85 pycrypto | 85 pycrypto |
| 86 pysed | 86 pysed |
| 87 flake8>=3.7.0 | 87 flake8>=3.7.0 |
| 88 flake8-docstrings | 88 flake8-docstrings |
| 89 flake8-commas | 89 flake8-commas |
| 90 pep8-naming | 90 pep8-naming |
| 91 hg+https://hg.adblockplus.org/codingtools#egg=flake8-eyeo&subdirectory=flake
8-eyeo | 91 hg+https://hg.adblockplus.org/codingtools#egg=flake8-eyeo&subdirectory=flake
8-eyeo |
| 92 httplib2 | 92 httplib2 |
| 93 oauth2client | 93 oauth2client |
| 94 PyMySQL |
| 94 | 95 |
| 95 setenv = | 96 setenv = |
| 96 SITESCRIPTS_CONFIG = ./.sitescripts.test | 97 SITESCRIPTS_CONFIG = ./.sitescripts.test |
| 97 whitelist_externals = cp | 98 whitelist_externals = cp |
| 98 commands = | 99 commands = |
| 99 cp .sitescripts.example .sitescripts.test | 100 cp .sitescripts.example .sitescripts.test |
| 100 pysed \ | 101 pysed \ |
| 101 -r sitescripts\.(reports|testpages|crawler|urlfixer)\.web.* \ | 102 -r sitescripts\.(reports|testpages|crawler|urlfixer)\.web.* \ |
| 102 '' .sitescripts.test --write | 103 '' .sitescripts.test --write |
| 103 python ensure_dependencies.py | 104 python ensure_dependencies.py |
| 104 py.test \ | 105 py.test \ |
| 105 --cov-config tox.ini --cov-report html --cov-report term --cov sitescrip
ts \ | 106 --cov-config tox.ini --cov-report html --cov-report term --cov sitescrip
ts \ |
| 106 tests \ | 107 tests \ |
| 107 sitescripts/hg/test \ | 108 sitescripts/hg/test \ |
| 108 sitescripts/notifications/test \ | 109 sitescripts/notifications/test \ |
| 109 sitescripts/formmail/test \ | 110 sitescripts/formmail/test \ |
| 110 sitescripts/extensions/test \ | 111 sitescripts/extensions/test \ |
| 111 sitescripts/subscriptions/test \ | 112 sitescripts/subscriptions/test \ |
| 112 sitescripts/reports/tests \ | 113 sitescripts/reports/tests \ |
| 113 sitescripts/oauth2dl/test | 114 sitescripts/oauth2dl/test |
| 114 flake8 sitescripts multiplexer.py multiplexer.fcgi | 115 flake8 sitescripts multiplexer.py multiplexer.fcgi |
| OLD | NEW |