diff options
author | Phil Dawson <phil.dawson@codethink.co.uk> | 2019-02-14 11:48:14 +0000 |
---|---|---|
committer | Phil Dawson <phildawson.0807@gmail.com> | 2019-02-20 15:14:42 +0000 |
commit | eee9e2834079439ce451c64e4ae2dfbfe6d1fccb (patch) | |
tree | fcaea2048f757e7cfbd6514a3dd18ac3ed58be38 /tox.ini | |
parent | 80a0832cf23950dd91a5cd233091af902e8754e8 (diff) | |
download | buildstream-eee9e2834079439ce451c64e4ae2dfbfe6d1fccb.tar.gz |
tox.ini: Add 'venv' environment to run arbitrary commands in a venvphil/tox-vev-environment
This is a handy way for developers to make use of the venvs we're
constructing for our test suite to run in.
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -91,3 +91,14 @@ commands = deps = click-man >= 0.3.0 -rrequirements/requirements.txt + +# +# Usefull for running arbitrary scripts in a BuildStream virtual env +# +[testenv:venv] +commands = {posargs} +deps = + -rrequirements/requirements.txt + -rrequirements/dev-requirements.txt + -rrequirements/plugin-requirements.txt +whitelist_externals = * |