diff options
author | Stephen Finucane <stephen.finucane@intel.com> | 2016-01-19 22:05:45 +0000 |
---|---|---|
committer | Stephen Finucane <stephen.finucane@intel.com> | 2016-01-25 16:09:36 +0000 |
commit | de99fa861b1fc85a5be45e941a233ba8bba58200 (patch) | |
tree | 162c9d0bc5ba979f06cf0507e525f4d032fd6ed7 | |
parent | 8e58c29f23b9cc072c003268d641f00084ce3b3b (diff) | |
download | patchwork-de99fa861b1fc85a5be45e941a233ba8bba58200.tar patchwork-de99fa861b1fc85a5be45e941a233ba8bba58200.tar.gz |
tox: Add 'venv' target
The venv command provides access to the tox virtual environment
without the need to source the actual virtualenv 'activate' file.
Signed-off-by: Stephen Finucane <stephen.finucane@intel.com>
-rw-r--r-- | tox.ini | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -38,6 +38,9 @@ deps = -r{toxinidir}/requirements-prod.txt commands = pylint patchwork --rcfile=pylint.rc +[testenv:venv] +commands = {posargs} + [testenv:coverage] basepython = python2.7 deps = |