summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorLukáš Piwowarski <lpiwowar@redhat.com>2022-10-07 13:47:11 +0200
committerLukáš Piwowarski <lpiwowar@redhat.com>2022-10-10 14:01:49 +0200
commitbe19f218138c7ab391eed1382cfa632a41bf0b0b (patch)
tree15727f2e40d465001936c93649733d46afbbdb7d /doc
parent6caf3b35732deffe4bca83151f6aa2f6c1975bb1 (diff)
downloadtempest-be19f218138c7ab391eed1382cfa632a41bf0b0b.tar.gz
Remove references to 'all-plugin' tox environment
The 'all-plugin' tox environment was deprecated by this patch [1]. Instead of the 'all-plugin' it is recommended to use the 'all' tox environment. This patch removes any reference to 'all-plugin' tox environment and updates the documentation so that the installation steps work with the 'all' tox venv. [1] https://review.opendev.org/c/openstack/tempest/+/543974 Related-Bug: 1862240 Change-Id: I0a86d9cf33bff6576a6337967d6b663ab7d9f4a6
Diffstat (limited to 'doc')
-rw-r--r--doc/source/plugins/plugin.rst8
1 files changed, 5 insertions, 3 deletions
diff --git a/doc/source/plugins/plugin.rst b/doc/source/plugins/plugin.rst
index b1fd6f88c..07713180d 100644
--- a/doc/source/plugins/plugin.rst
+++ b/doc/source/plugins/plugin.rst
@@ -345,6 +345,8 @@ isolate the Tempest install from the rest of your system so just installing the
plugin package on your system and then running Tempest inside a venv will not
work.
-Tempest also exposes a tox job, all-plugin, which will setup a tox virtualenv
-with system site-packages enabled. This will let you leverage tox without
-requiring to manually install plugins in the tox venv before running tests.
+For example, you can use tox to install and run tests from a tempest plugin like
+this::
+
+ [~/tempest] $ tox -e venv-tempest -- pip install (path to the plugin directory)
+ [~/tempest] $ tox -e all