tobiko/doc/source/user/_conf_venv_with_tox.rst
Omer 5cd15560e4 Refactor configuration part of Tobiko quick start guide
So far, the Tobiko docs were duplicated in some places, different
(although duplicated), and some fragments were not relevant (or
outdated).

This patch refactors the configuration part of Tobiko quick start guide
by modularizing the fragments ("spilling" fragments instead of coping
them), correcting typos, and deleting/updating irrelevant information.

Note: in order to see how the change will appear, download it with
`git review -d <change_url>`, run the `tox -e docs` command, and then
double click
(with the file explorer) tobiko/doc/build/html/<file-you-want>.

Change-Id: Ibb27382ec3c7a8969686cfd89c2205cdd2dd2525
2022-06-24 12:44:30 +02:00

372 B

To execute commands from a virtualenv created by Tox, add the virtualenv name to tox.ini envlist variable in the following way (in this example, the virtual environment's name is 'venv'):

[tox]

envlist = other_environment_variables,venv

Run your commands as below:

tox -e venv -- <your-commands>

For example:

tox -e venv -- openstack network list