Add support for tox

This commit is contained in:
Marc Abramowitz
2013-09-30 09:27:48 -07:00
parent c8b2744ea2
commit e20b631d16
2 changed files with 11 additions and 0 deletions

1
.gitignore vendored
View File

@@ -7,5 +7,6 @@
*.zip
*.egg
*.egg-info/
.tox/
build/
dist/

10
tox.ini Normal file
View File

@@ -0,0 +1,10 @@
[tox]
envlist = py25, py26, py27, py33
[testenv]
setenv =
TESTDB=travis.cnf
commands =
nosetests {posargs:-w tests -v}
deps =
nose