Skip to content

Commit 5bc5b91

Browse files
committed
Adding comment explaining the subtest_properties hash map
1 parent 0254cea commit 5bc5b91

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

qa/L0_backend_python/test.sh

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,6 +178,17 @@ fi
178178
pip3 install pytest requests virtualenv
179179

180180
# Set up the tests to execute.
181+
# `subtest_properties` is a hash map of the subtests to run
182+
# and the associated properties, or configurations, for each
183+
# subtest. The list of subtests to run is found by listing the final
184+
# set of keys. The subtest properties are variables which the
185+
# subtest can consume to narrow or widen the scope of the subtest.
186+
# In the same way we can add or remove entries in the hash map
187+
# to include/exclude subtests, we can add or remove properties in
188+
# the value to increase/decrease the scope of the subtest.
189+
#
190+
# <key> = subtest name (also the subdirectory for the subtest)
191+
# <value> = properties which the subtest can consume.
181192
declare -A subtest_properties
182193
subtest_properties["shared_memory"]=""
183194
subtest_properties["lifecycle"]=""
@@ -197,7 +208,7 @@ if [ "$TEST_JETSON" == "0" ]; then
197208
subtest_properties["bls"]=""
198209
subtest_properties["decoupled"]=""
199210
subtest_properties["response_sender"]=""
200-
subtest_properties["env"]="locale"
211+
subtest_properties["env"]="locale extraction aws"
201212
fi
202213

203214
# If not running on windows add these

0 commit comments

Comments
 (0)