File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -332,7 +332,6 @@ repos:
332332 ?^ci/scripts/python_build\.sh$|
333333 ?^ci/scripts/python_sdist_build\.sh$|
334334 ?^ci/scripts/python_sdist_test\.sh$|
335- ?^ci/scripts/python_test_emscripten\.sh$|
336335 ?^ci/scripts/python_wheel_unix_test\.sh$|
337336 ?^ci/scripts/python_test_type_annotations\.sh$|
338337 ?^ci/scripts/python_test\.sh$|
Original file line number Diff line number Diff line change @@ -25,15 +25,14 @@ set -ex
2525build_dir=${1} /python
2626pyodide_dist_dir=${2}
2727
28- cd " ${build_dir} "
28+ cd ${build_dir}
2929
3030# note: this uses the newest wheel in dist
31- # shellcheck disable=SC2012
3231pyodide_wheel=$( ls -t dist/pyarrow* .whl | head -1)
3332
3433echo " -------------- Running emscripten tests in Node ----------------------"
35- python scripts/run_emscripten_tests.py " ${pyodide_wheel} " --dist-dir=" ${pyodide_dist_dir} " --runtime=node
34+ python scripts/run_emscripten_tests.py ${pyodide_wheel} --dist-dir=${pyodide_dist_dir} --runtime=node
3635
3736echo " -------------- Running emscripten tests in Chrome --------------------"
38- python scripts/run_emscripten_tests.py " ${pyodide_wheel} " --dist-dir=" ${pyodide_dist_dir} " --runtime=chrome
37+ python scripts/run_emscripten_tests.py ${pyodide_wheel} --dist-dir=${pyodide_dist_dir} --runtime=chrome
3938
You can’t perform that action at this time.
0 commit comments