| OLD | NEW |
| 1 [tox] | 1 [tox] |
| 2 envlist = py27 | 2 envlist = py27 |
| 3 skipsdist = true | 3 skipsdist = true |
| 4 | 4 |
| 5 [flake8] | 5 [flake8] |
| 6 | 6 |
| 7 exclude = | 7 exclude = |
| 8 node_modules, | 8 node_modules, |
| 9 .tox, | 9 .tox, |
| 10 *.pyc, | 10 *.pyc, |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 PYTHONPATH = {toxinidir}/.. | 33 PYTHONPATH = {toxinidir}/.. |
| 34 deps = | 34 deps = |
| 35 pycrypto | 35 pycrypto |
| 36 pytest | 36 pytest |
| 37 pytest-cov | 37 pytest-cov |
| 38 jinja2 | 38 jinja2 |
| 39 flake8>=3.7.0 | 39 flake8>=3.7.0 |
| 40 flake8-docstrings | 40 flake8-docstrings |
| 41 flake8-commas | 41 flake8-commas |
| 42 pep8-naming | 42 pep8-naming |
| 43 hg+https://hg.adblockplus.org/codingtools#egg=flake8-eyeo&subdirectory=flake
8-eyeo | 43 git+https://gitlab.com/eyeo/auxiliary/eyeo-coding-style#egg=flake8-eyeo&subd
irectory=flake8-eyeo |
| 44 commands = | 44 commands = |
| 45 npm install --no-package-lock --only=production | 45 npm install --no-package-lock --only=production |
| 46 pytest tests --capture=sys --cov=buildtools | 46 pytest tests --capture=sys --cov=buildtools |
| 47 flake8 | 47 flake8 |
| OLD | NEW |