diff --git a/.gitignore b/.gitignore index c9d198e7..de978f69 100755 --- a/.gitignore +++ b/.gitignore @@ -23,3 +23,4 @@ html/ examples/frameworks/pylonstest/PasteScript* examples/frameworks/pylonstest/pylonstest.egg-info/ examples/frameworks/django/testing/testdb.sql +.tox diff --git a/tox.ini b/tox.ini new file mode 100644 index 00000000..b92db304 --- /dev/null +++ b/tox.ini @@ -0,0 +1,11 @@ +# Tox (http://tox.testrun.org/) 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 = py26, py27, pypy + +[testenv] +commands = nosetests +deps = nose