From f0b03a852f0909e29164b22536d7bcc0690a9f91 Mon Sep 17 00:00:00 2001 From: Tom Augspurger Date: Thu, 30 Jul 2026 05:25:27 -0700 Subject: [PATCH] Reduce cudf-polars test output verbosity This removes the `-ra` flags from pytest, to just print the count of xfailed/skipped/etc. tests, rather than a reason for each. We added them earlier for debugging, but they're more just getting in the way now. --- ci/run_cudf_polars_polars_tests.sh | 2 -- ci/test_python_other.sh | 3 +-- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/ci/run_cudf_polars_polars_tests.sh b/ci/run_cudf_polars_polars_tests.sh index 1c6a542afbf4..740373ae3fae 100755 --- a/ci/run_cudf_polars_polars_tests.sh +++ b/ci/run_cudf_polars_polars_tests.sh @@ -75,7 +75,6 @@ python "${TIMEOUT_TOOL_PATH}" --enable-python 5400 \ --dist=worksteal \ --tb=native \ --durations 10 --durations-min 10 \ - -ra \ $DESELECTED_TESTS_STR \ "$@" \ py-polars/tests \ @@ -97,7 +96,6 @@ python "${TIMEOUT_TOOL_PATH}" --enable-python 5400 \ --dist=worksteal \ --tb=native \ --durations 10 --durations-min 10 \ - -ra \ $DESELECTED_TESTS_STR \ "$@" \ py-polars/tests \ diff --git a/ci/test_python_other.sh b/ci/test_python_other.sh index ecb83d66df22..83d1b953eeac 100755 --- a/ci/test_python_other.sh +++ b/ci/test_python_other.sh @@ -52,8 +52,7 @@ rapids-logger "pytest cudf-polars" --cov=cudf_polars \ --cov-report=xml:"${RAPIDS_COVERAGE_DIR}/cudf-polars-coverage.xml" \ --cov-report=term \ - --durations=10 --durations-min=10 \ - -ra + --durations=10 --durations-min=10 rapids-logger "pytest cudf_streaming" timeout 30m ./ci/run_cudf_streaming_pytests.sh \