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 eb73dc4 commit de8569fCopy full SHA for de8569f
scripts/ci/get-all-tests.sh
@@ -30,7 +30,8 @@ get_all_test_subpackage() {
30
then
31
# Still has test subpackage won't scan
32
declare test_path="$test_subpkg*/"
33
- declare -a test_subpkg_array=( $(ls -d "$test_path" | grep -v '__pycache__') )
+ # shellcheck disable=SC2086
34
+ declare -a test_subpkg_array=( $(ls -d $test_path | grep -v '__pycache__') )
35
36
if [ ${#test_subpkg_array[@]} != 0 ];
37
0 commit comments