Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ci/run_cudf_polars_polars_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ DESELECTED_TESTS_STR=$(printf -- " --deselect %s" "${DESELECTED_TESTS[@]}")
# shellcheck disable=SC2086
# Fail fast (-x) because failed tests pollute the state
echo "Run polars tests with injected in-memory GPU engine"
python "${TIMEOUT_TOOL_PATH}" --enable-python 3600 \
python "${TIMEOUT_TOOL_PATH}" --enable-python 4800 \
python -m pytest \
--import-mode=importlib \
--cache-clear \
Expand All @@ -85,7 +85,7 @@ python "${TIMEOUT_TOOL_PATH}" --enable-python 3600 \
echo "Run polars tests with injected SPMD GPU engine, small blocksize"
CUDF_POLARS__EXECUTOR__TARGET_PARTITION_SIZE=805306368 \
CUDF_POLARS__EXECUTOR__FALLBACK_MODE=silent \
python "${TIMEOUT_TOOL_PATH}" --enable-python 3600 \
python "${TIMEOUT_TOOL_PATH}" --enable-python 4800 \
python -m pytest \
--import-mode=importlib \
--cache-clear \
Expand Down
2 changes: 1 addition & 1 deletion ci/run_cudf_polars_pytests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ TIMEOUT_TOOL_PATH="$(dirname "$(realpath "${BASH_SOURCE[0]}")")"/timeout_with_st

cd "$(dirname "$(realpath "${BASH_SOURCE[0]}")")"/../python/cudf_polars/

python "${TIMEOUT_TOOL_PATH}" --enable-python 3600 \
python "${TIMEOUT_TOOL_PATH}" --enable-python 4800 \
python -m pytest --cache-clear "$@" tests
Loading