We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e306634 commit e26a3b4Copy full SHA for e26a3b4
scripts/ci/test/get-all-tests.sh
@@ -47,7 +47,7 @@ get_all_test_subpackage() {
47
fi
48
}
49
50
-declare -a all_tests
+declare all_tests
51
52
get_all_test_modules_under_subpkg() {
53
# Get all test modules with one specific subpackage (directory has __init__.py file)
@@ -59,7 +59,9 @@ get_all_test_modules_under_subpkg() {
59
alltestpaths+=("$1$test_module_path")
60
done
61
62
- all_tests+=("${alltestpaths[@]}")
+ # shellcheck disable=SC2124
63
+ # shellcheck disable=SC2178
64
+ all_tests+="${alltestpaths[@]} "
65
66
67
get_all_test_modules() {
0 commit comments