From 327a474a5cfc091819857e20a1cb606123d0a37f Mon Sep 17 00:00:00 2001 From: Tom Augspurger Date: Thu, 25 Jun 2026 04:49:17 -0700 Subject: [PATCH 1/2] Adjust verbosity of cudf-polars-polars-tests The recent CI failures running upstream polars tests have all been in the SPMD engine, not the in-memory engine. Reduce the test output for in-memory, and increase it for SPMD. --- ci/run_cudf_polars_polars_tests.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/run_cudf_polars_polars_tests.sh b/ci/run_cudf_polars_polars_tests.sh index 067f2ffc9f49..289fd21d1e8e 100755 --- a/ci/run_cudf_polars_polars_tests.sh +++ b/ci/run_cudf_polars_polars_tests.sh @@ -1,5 +1,5 @@ #!/bin/bash -# SPDX-FileCopyrightText: Copyright (c) 2024-2026, NVIDIA CORPORATION. +# SPDX-FileCopyrightText: Copyright (c) 2024-2026, NVIDIA CORPORATION & AFFILIATES. All rights reserved. # SPDX-License-Identifier: Apache-2.0 set -euo pipefail @@ -61,7 +61,6 @@ DESELECTED_TESTS_STR=$(printf -- " --deselect %s" "${DESELECTED_TESTS[@]}") # shellcheck disable=SC2086 echo "Run polars tests with injected in-memory GPU engine" python -m pytest \ - -vv \ --import-mode=importlib \ --cache-clear \ -m "" \ @@ -84,6 +83,7 @@ CUDF_POLARS__EXECUTOR__FALLBACK_MODE=silent \ python -m pytest \ --import-mode=importlib \ --cache-clear \ + -vs \ -m "" \ -p cudf_polars.testing.inject_gpu_engine \ -W ignore::ResourceWarning \ From 5fce0e729ee8a3687d1fa4aa3e60c95e4617d741 Mon Sep 17 00:00:00 2001 From: Tom Augspurger Date: Thu, 25 Jun 2026 18:25:27 -0700 Subject: [PATCH 2/2] remove s flag --- ci/run_cudf_polars_polars_tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/run_cudf_polars_polars_tests.sh b/ci/run_cudf_polars_polars_tests.sh index 289fd21d1e8e..faccfadd48c6 100755 --- a/ci/run_cudf_polars_polars_tests.sh +++ b/ci/run_cudf_polars_polars_tests.sh @@ -83,7 +83,7 @@ CUDF_POLARS__EXECUTOR__FALLBACK_MODE=silent \ python -m pytest \ --import-mode=importlib \ --cache-clear \ - -vs \ + -v \ -m "" \ -p cudf_polars.testing.inject_gpu_engine \ -W ignore::ResourceWarning \