added tox.ini, thanks Marc

This commit is contained in:
Massimo Di Pierro
2012-05-06 17:27:54 -05:00
parent 423da1695e
commit a1f6c2d160
3 changed files with 22 additions and 2 deletions
+1 -1
View File
@@ -1 +1 @@
Version 1.99.7 (2012-05-06 17:20:16) dev
Version 1.99.7 (2012-05-06 17:27:23) dev
+10 -1
View File
@@ -1 +1,10 @@
from test_cache import *
from test_dal import *
from test_html import *
from test_is_url import *
from test_languages import *
from test_router import *
from test_routes import *
from test_storage import *
from test_template import *
from test_utils import *
+11
View File
@@ -0,0 +1,11 @@
# Tox (http://codespeak.net/~hpk/tox/) is a tool for running tests
# in multiple virtualenvs. This configuration file will run the
# test suite on all supported python versions. To use it, "pip install tox"
# and then run "tox" from this directory.
[tox]
envlist = py25, py26, py27, pypy
[testenv]
commands = unit2 -v gluon.tests
deps = unittest2