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
This commit is contained in:
Katarina Strenkova 2023-08-01 14:57:18 +02:00
parent a8151e9563
commit 09e3ef837b

View File

@ -51,7 +51,7 @@ Then, we can create a `tempest.yaml` playbook with the following vars:
tempest_run_stackviz: false tempest_run_stackviz: false
tempest_tempest_conf_overrides: tempest_tempest_conf_overrides:
auth.tempest_roles: "Member" auth.tempest_roles: "Member"
tempest_test_whitelist: tempest_test_includelist:
- 'tempest.api.identity.v3' - 'tempest.api.identity.v3'
gather_facts: true gather_facts: true
roles: 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_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_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_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_includelist`: 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_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. * `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: within `tempest_workspace/etc/` dir, we can find following files:
* tempest.conf * tempest.conf
* tempest_whitelist.txt * tempest_includelist.txt
* tempest_blacklist.txt * tempest_excludelist.txt
within `/var/log/tempest` dir, we can find the tempest tests results in html format. within `/var/log/tempest` dir, we can find the tempest tests results in html format.