2012-06-05 02:05:59 +02:00
|
|
|
# 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]
|
2014-04-24 17:08:40 +02:00
|
|
|
envlist = py26, py27, py34, pypy
|
2012-06-05 02:05:59 +02:00
|
|
|
|
|
|
|
[testenv]
|
|
|
|
commands = {envpython} setup.py test
|
|
|
|
|
|
|
|
[testenv:py26]
|
|
|
|
deps = argparse
|
2014-04-24 18:20:23 +02:00
|
|
|
|
|
|
|
[testenv:py27]
|
|
|
|
# Install docutils to test .rst files syntax
|
|
|
|
deps = docutils
|