| Left: | ||
| Right: |
| LEFT | RIGHT |
|---|---|
| (no file at all) | |
| 1 [tox] | |
| 2 envlist = py{27,35,36},flake8 | |
| 3 skipsdist = true | |
| 4 | |
| 5 [flake8] | |
| 6 per-file-ignores = | |
| 7 src/__init__.py : D104 | |
| 8 | |
| 9 [testenv] | |
| 10 setenv = | |
| 11 PYTHONPATH = {toxinidir} | |
| 12 deps = | |
| 13 jinja2 | |
| 14 pytest | |
| 15 pytest-cov | |
| 16 commands = | |
| 17 pytest tests --cov-config tox.ini --cov-report html --cov-report term-missin g --cov=src | |
| 18 | |
| 19 [testenv:flake8] | |
| 20 basepython = python3 | |
| 21 deps = | |
| 22 flake8 | |
| 23 flake8-docstrings | |
| 24 flake8-per-file-ignores | |
| 25 pep8-naming | |
| 26 ../flake8-eyeo | |
| 27 commands = | |
| 28 flake8 src tests | |
| LEFT | RIGHT |