Merge pull request #29 from msabramo/tox

Add tox.ini for tox (http://tox.testrun.org/)
This commit is contained in:
Andy Dustman
2013-11-21 13:36:48 -08:00
2 changed files with 12 additions and 0 deletions

1
.gitignore vendored
View File

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

11
tox.ini Normal file
View File

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