1# Tox (http://tox.testrun.org/) is a tool for running tests 2# in multiple virtualenvs. This configuration file will run the 3# test suite on all supported python versions.To use it, 4# "pip install tox" and then run "tox" from this directory. 5 6[tox] 7minversion = 1.7.2 8skip_missing_interpreters=True 9envlist = 10 py26, 11 py27, 12 py33, 13 py34, 14 py35, 15 py36, 16 17[testenv] 18deps = 19commands = 20 {envpython} {toxinidir}/test/runtests.py --quiet --no-builddir [] 21