From 5ef5484bbe8b5c27fe84f759f446d5485975d189 Mon Sep 17 00:00:00 2001 From: Venelin Stoykov Date: Fri, 18 Aug 2017 09:11:32 +0300 Subject: [PATCH] Add tox configuration for easy local testing (#85) --- .gitignore | 1 + tox.ini | 10 ++++++++++ 2 files changed, 11 insertions(+) create mode 100644 tox.ini 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