diff --git a/.gitignore b/.gitignore index 44ac756..339582d 100644 --- a/.gitignore +++ b/.gitignore @@ -15,3 +15,4 @@ docs/_build tests/*.xml tests/*.txt .idea/ +.tox/ diff --git a/tox.ini b/tox.ini new file mode 100644 index 0000000..cba1097 --- /dev/null +++ b/tox.ini @@ -0,0 +1,10 @@ +[tox] +envlist = py26,py27,py34,py35,py36 + +[testenv] +commands = nosetests --nologcapture +deps = + six + pycryptodome + chardet + nose