Skip to content

Commit

Permalink
Skip tpc-h benchmarks on arm
Browse files Browse the repository at this point in the history
  • Loading branch information
vyasr committed Nov 14, 2024
1 parent 51d14a1 commit c2fdc1a
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions ci/run_cudf_polars_polars_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@ DESELECTED_TESTS=(
"tests/docs/test_user_guide.py" # No dot binary in CI image
)

# The binary used for TPC-H generation is compiled for x86_64, not aarch64.
if [[ $(arch) == "aarch64" ]]; then
DESELECTED_TESTS+=("py-polars/tests/benchmark/test_pdsh.py::test_pdsh")
fi

DESELECTED_TESTS=$(printf -- " --deselect %s" "${DESELECTED_TESTS[@]}")
python -m pytest \
--import-mode=importlib \
Expand Down

0 comments on commit c2fdc1a

Please sign in to comment.