| 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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 mock | 82 mock |
| 83 pytest-mock | 83 pytest-mock |
| 84 wsgi_intercept | 84 wsgi_intercept |
| 85 jinja2 | 85 jinja2 |
| 86 pycrypto | 86 pycrypto |
| 87 pysed | 87 pysed |
| 88 flake8>=3.7.0 | 88 flake8>=3.7.0 |
| 89 flake8-docstrings | 89 flake8-docstrings |
| 90 flake8-commas | 90 flake8-commas |
| 91 pep8-naming | 91 pep8-naming |
| 92 hg+https://hg.adblockplus.org/codingtools#egg=flake8-eyeo&subdirectory=flake
8-eyeo | 92 git+https://gitlab.com/eyeo/auxiliary/eyeo-coding-style#egg=flake8-eyeo&subd
irectory=flake8-eyeo |
| 93 httplib2 | 93 httplib2 |
| 94 oauth2client | 94 oauth2client |
| 95 | 95 |
| 96 setenv = | 96 setenv = |
| 97 SITESCRIPTS_CONFIG = ./.sitescripts.test | 97 SITESCRIPTS_CONFIG = ./.sitescripts.test |
| 98 whitelist_externals = cp | 98 whitelist_externals = cp |
| 99 commands = | 99 commands = |
| 100 cp .sitescripts.example .sitescripts.test | 100 cp .sitescripts.example .sitescripts.test |
| 101 pysed \ | 101 pysed \ |
| 102 -r sitescripts\.(reports|testpages|crawler|urlfixer)\.web.* \ | 102 -r sitescripts\.(reports|testpages|crawler|urlfixer)\.web.* \ |
| 103 '' .sitescripts.test --write | 103 '' .sitescripts.test --write |
| 104 python ensure_dependencies.py | 104 python ensure_dependencies.py |
| 105 py.test \ | 105 py.test \ |
| 106 --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 \ |
| 107 tests \ | 107 tests \ |
| 108 sitescripts/hg/test \ | 108 sitescripts/hg/test \ |
| 109 sitescripts/notifications/test \ | 109 sitescripts/notifications/test \ |
| 110 sitescripts/formmail/test \ | 110 sitescripts/formmail/test \ |
| 111 sitescripts/extensions/test \ | 111 sitescripts/extensions/test \ |
| 112 sitescripts/subscriptions/test \ | 112 sitescripts/subscriptions/test \ |
| 113 sitescripts/reports/tests \ | 113 sitescripts/reports/tests \ |
| 114 sitescripts/oauth2dl/test \ | 114 sitescripts/oauth2dl/test \ |
| 115 sitescripts/testpages/test | 115 sitescripts/testpages/test |
| 116 flake8 sitescripts multiplexer.py multiplexer.fcgi | 116 flake8 sitescripts multiplexer.py multiplexer.fcgi |
| OLD | NEW |