| Index: update-copyright/tox.ini |
| =================================================================== |
| new file mode 100644 |
| --- /dev/null |
| +++ b/update-copyright/tox.ini |
| @@ -0,0 +1,17 @@ |
| +[tox] |
| +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.
|
| +skipsdist = True |
| + |
| +[testenv] |
| +setenv = |
| + PYTHONPATH = {toxinidir} |
| + |
| +deps = |
| + pytest |
| + flake8-putty |
| + pytest-cov |
| + |
| +commands = |
| + pytest tests |
| + flake8 update_copyright tests |
| + 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.
|