Add tox configuration file

tox makes it easy to test against multiple Python interpreters. See
http://tox.testrun.org for details.
This commit is contained in:
myint 2012-09-09 09:58:38 -07:00
parent 3cb737131b
commit 97119b8de0
1 changed files with 9 additions and 0 deletions

9
htmlreport/tox.ini Normal file
View File

@ -0,0 +1,9 @@
[tox]
envlist=py26,py27,py32,pypy
[testenv]
commands=
python test_htmlreport.py
[testenv:py26]
deps=unittest2