Add tox configuration file

Make it easier to run unittests locally.
This commit is contained in:
Gilles Dartiguelongue
2018-03-20 15:08:52 +01:00
parent c088aa566d
commit 486bdf56fc
+9
View File
@@ -0,0 +1,9 @@
[tox]
envlist = py{27,34,35,36}
skip_missing_interpreters = True
[testenv]
deps =
nose
coverage
commands = {envpython} ./setup.py nosetests {posargs}