I am using tox for my project.
Here is my tox.ini file:
tox.ini
[tox] envlist = py27, lint, coverage skipsdist = True [testenv:py27] dep
The question is old but the answers do not apply to my situation. In my case, once I changed the [testenv] to [env], it works. This is because my Python virtual environment is named as "env".
[testenv]
[env]