diff --git a/tox.ini b/tox.ini new file mode 100644 index 0000000..f8fb65d --- /dev/null +++ b/tox.ini @@ -0,0 +1,16 @@ +[tox] +minversion = 1.6 +envlist = flake8,py27 +skipsdist = true + +[testenv] +deps = coverage +commands = coverage run test_bot.py + coverage html + +[testenv:flake8] +deps = flake8 +commands = flake8 + +[flake8] +max-line-length = 120