From 09e3ef837b0930a80e9a95ea6f2a044f966b488e Mon Sep 17 00:00:00 2001 From: Katarina Strenkova Date: Tue, 1 Aug 2023 14:57:18 +0200 Subject: [PATCH] Replace deprecated terms Following up on the usage of inclusive jargon [1] and to ensure consistency in code, there is a need to replace deprecated term tempest_test_blacklist with a new term tempest_test_excludelist. Additionally, term tempest_test_whitelist was replaced with a new term tempest_test_includelist. [1] https://review.opendev.org/c/openstack/tempest/+/768583 Depends-On: https://review.opendev.org/c/openstack/openstack-ansible-os_tempest/+/891567 Change-Id: I71f548cc607aa7c61a6c3f1ab5c9857e4906cb57 --- .../source/post_deployment/tempest/os_tempest.rst | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/deploy-guide/source/post_deployment/tempest/os_tempest.rst b/deploy-guide/source/post_deployment/tempest/os_tempest.rst index a742457c..d0ee3e9c 100644 --- a/deploy-guide/source/post_deployment/tempest/os_tempest.rst +++ b/deploy-guide/source/post_deployment/tempest/os_tempest.rst @@ -51,7 +51,7 @@ Then, we can create a `tempest.yaml` playbook with the following vars: tempest_run_stackviz: false tempest_tempest_conf_overrides: auth.tempest_roles: "Member" - tempest_test_whitelist: + tempest_test_includelist: - 'tempest.api.identity.v3' gather_facts: true roles: @@ -79,8 +79,8 @@ What are these above vars: * `tempest_use_tempestconf`: For generating tempest.conf, we use python-tempestconf tool. By default It is set to false. Set it to `true` for using it * `tempest_run_stackviz`: Stackviz is very useful in CI for analyzing tempest results, for local use, we set it to false. By default it is set to true. * `tempest_tempest_conf_overrides`: In order to pass additional tempest configuration to python-tempestconf tool, we can pass a dictionary of values. -* `tempest_test_whitelist`: We need to pass a list of tests which we wish to run on the target host as a list. -* `tempest_test_blacklist`: In order to skip tempest tests, we can pass the list here. +* `tempest_test_includelist`: We need to pass a list of tests which we wish to run on the target host as a list. +* `tempest_test_excludelist`: In order to skip tempest tests, we can pass the list here. * `gather_facts`: We need to set gather_facts to true as os_tempest rely on targeted environment facts for installing stuff. @@ -98,8 +98,8 @@ Once the playbook run finishes, we can find the tempest related directories in t within `tempest_workspace/etc/` dir, we can find following files: * tempest.conf -* tempest_whitelist.txt -* tempest_blacklist.txt +* tempest_includelist.txt +* tempest_excludelist.txt within `/var/log/tempest` dir, we can find the tempest tests results in html format.