Left: | ||
Right: |
LEFT | RIGHT |
---|---|
1 [tox] | 1 [tox] |
2 envlist = py{35,36} | 2 envlist = py{35,36} |
3 skipsdist = True | 3 skipsdist = True |
4 | 4 |
5 [testenv] | 5 [testenv] |
6 setenv = | 6 setenv = |
7 PYTHONPATH = {toxinidir} | 7 PYTHONPATH = {toxinidir} |
8 | 8 |
9 deps = | 9 deps = |
10 pytest | 10 pytest |
11 flake8-putty | |
12 pytest-cov | 11 pytest-cov |
12 flake8 | |
13 pep8-naming | |
14 ../flake8-eyeo | |
13 | 15 |
14 commands = | 16 commands = |
15 pytest --cov=update_copyright tests | 17 pytest --cov=update_copyright tests |
16 flake8 tests | 18 flake8 update_copyright.py tests |
17 | |
LEFT | RIGHT |