Add tox configuration for easy local testing (#85)

pull/98/head
Venelin Stoykov 2017-08-18 09:11:32 +03:00 committed by Goulu
parent 171cdcc69d
commit 5ef5484bbe
2 changed files with 11 additions and 0 deletions

1
.gitignore vendored
View File

@ -15,3 +15,4 @@ docs/_build
tests/*.xml tests/*.xml
tests/*.txt tests/*.txt
.idea/ .idea/
.tox/

10
tox.ini Normal file
View File

@ -0,0 +1,10 @@
[tox]
envlist = py26,py27,py34,py35,py36
[testenv]
commands = nosetests --nologcapture
deps =
six
pycryptodome
chardet
nose