Left: | ||
Right: |
OLD | NEW |
---|---|
(Empty) | |
1 [tox] | |
2 envlist = py35 | |
Jon Sonesen
2017/06/13 16:30:20
Can you please use py35 and 36? Similar to the tox
rosie
2017/06/23 14:39:25
Done.
| |
3 skipsdist = True | |
4 | |
5 [testenv] | |
6 setenv = | |
7 PYTHONPATH = {toxinidir} | |
8 | |
9 deps = | |
10 pytest | |
11 flake8-putty | |
12 pytest-cov | |
13 | |
14 commands = | |
15 pytest tests | |
16 flake8 update_copyright tests | |
17 pytest --cov=update_copyright tests/ | |
Jon Sonesen
2017/06/13 16:30:20
you can add consolidate the pytest calls into one
rosie
2017/06/23 14:39:25
Done.
| |
OLD | NEW |