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 035cd23 commit c281be5Copy full SHA for c281be5
scripts/ci/test/get-all-tests.sh
@@ -54,7 +54,7 @@ get_all_test_modules_under_subpkg() {
54
declare -a testpatharray=( $(ls -F "$1" | grep -v '/$' | grep -v '__init__.py' | grep -v 'test_config.py' | grep -v -E '^_[a-z_]{1,64}.py' | grep -v '__pycache__'))
55
56
declare -a alltestpaths
57
- for test_module_path in ${testpatharray};
+ for test_module_path in "${testpatharray[@]}";
58
do
59
alltestpaths+=("$1$test_module_path")
60
done
0 commit comments