Index: update-copyright/tox.ini |
=================================================================== |
new file mode 100644 |
--- /dev/null |
+++ b/update-copyright/tox.ini |
@@ -0,0 +1,18 @@ |
+[tox] |
+#envlist = py{35,36} |
Vasily Kuznetsov
2017/06/27 16:18:51
Forgot to uncomment? ;)
rosie
2017/07/03 15:33:44
Done.
|
+envlist = py35 |
+skipsdist = True |
+ |
+[testenv] |
+setenv = |
+ PYTHONPATH = {toxinidir} |
+ |
+deps = |
+ pytest |
+ flake8-putty |
+ pytest-cov |
+ |
+commands = |
+ pytest --cov=update_copyright tests |
+ flake8 tests |
+ |