[tox]1envlist = py27, py34, py35, py36, py37, py38, py39, py3102skip_missing_interpreters=true34[testenv]5setenv =6# We make it harder to get the encoding right by using the dumbest default7LC_ALL = C8SAGE_ROOT = {toxinidir}/..910[testenv:py27]11commands=python2.7 -m unittest discover1213[testenv:py34]14commands=python3.4 -m unittest discover1516[testenv:py35]17commands=python3.5 -m unittest discover1819[testenv:py36]20commands=python3.6 -m unittest discover2122[testenv:py37]23commands=python3.7 -m unittest discover2425[testenv:py38]26commands=python3.8 -m unittest discover2728[testenv:py39]29commands=python3.9 -m unittest discover3031[testenv:py310]32commands=python3.10 -m unittest discover333435