tox is a generic virtualenv management and test running tool.
I am using tox for my project. Here is my tox.ini file: [tox] envlist = py27, lint, coverage skipsdist = True […
python unit-testing pylint toxHow do you test different Python versions with Tox from within Travis-CI? I have a tox.ini: [tox] envlist = py{27,33,34,35} …
python unit-testing travis-ci python-unittest tox