File tree Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Original file line number Diff line number Diff line change 178178pip3 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.
181192declare -A subtest_properties
182193subtest_properties[" shared_memory" ]=" "
183194subtest_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 "
201212fi
202213
203214# If not running on windows add these
You can’t perform that action at this time.
0 commit comments