From 7fb6f30900d94f6e3c351e85692b2946ecf605dc Mon Sep 17 00:00:00 2001 From: Matthew Roeschke <10647082+mroeschke@users.noreply.github.com> Date: Thu, 13 Aug 2026 17:48:35 +0000 Subject: [PATCH 1/3] Ignore xgboost warning in cudf.pandas third party tests --- .../third_party_integration_tests/tests/pytest.ini | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/python/cudf/cudf_pandas_tests/third_party_integration_tests/tests/pytest.ini b/python/cudf/cudf_pandas_tests/third_party_integration_tests/tests/pytest.ini index 46b3213a4c83..1890a23f1ead 100644 --- a/python/cudf/cudf_pandas_tests/third_party_integration_tests/tests/pytest.ini +++ b/python/cudf/cudf_pandas_tests/third_party_integration_tests/tests/pytest.ini @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: Copyright (c) 2024, NVIDIA CORPORATION. +# SPDX-FileCopyrightText: Copyright (c) 2024-2026, NVIDIA CORPORATION & AFFILIATES. All rights reserved. # SPDX-License-Identifier: Apache-2.0 [pytest] @@ -9,3 +9,7 @@ markers= xfail_cudf_pandas: this test is expected to fail in the cudf_pandas pass xfail_compare: this test is expected to fail in the comparison pass addopts = --tb=native +# TODO: Can remove in 26.10 +filterwarnings = + error + ignore:`rapids-xgboost` will no longer be published:FutureWarning From 57cf624aaa9b3c8fada504e2a5651dd9375c3673 Mon Sep 17 00:00:00 2001 From: Matthew Roeschke <10647082+mroeschke@users.noreply.github.com> Date: Thu, 13 Aug 2026 18:00:39 +0000 Subject: [PATCH 2/3] Update comment --- .../third_party_integration_tests/tests/pytest.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/cudf/cudf_pandas_tests/third_party_integration_tests/tests/pytest.ini b/python/cudf/cudf_pandas_tests/third_party_integration_tests/tests/pytest.ini index 1890a23f1ead..f9a52772d773 100644 --- a/python/cudf/cudf_pandas_tests/third_party_integration_tests/tests/pytest.ini +++ b/python/cudf/cudf_pandas_tests/third_party_integration_tests/tests/pytest.ini @@ -9,7 +9,7 @@ markers= xfail_cudf_pandas: this test is expected to fail in the cudf_pandas pass xfail_compare: this test is expected to fail in the comparison pass addopts = --tb=native -# TODO: Can remove in 26.10 +# TODO: Can remove once https://github.com/rapidsai/build-planning/issues/312 is fully resolved filterwarnings = error ignore:`rapids-xgboost` will no longer be published:FutureWarning From 17c01c152003a95b4fe4747ecb697f8006f9f274 Mon Sep 17 00:00:00 2001 From: Matthew Roeschke <10647082+mroeschke@users.noreply.github.com> Date: Thu, 13 Aug 2026 19:29:55 +0000 Subject: [PATCH 3/3] Remove -W error from pytest cli --- .../third-party-integration/run-library-tests.sh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/ci/cudf_pandas_scripts/third-party-integration/run-library-tests.sh b/ci/cudf_pandas_scripts/third-party-integration/run-library-tests.sh index 4e83acf4f57e..3ca9dd93dea2 100755 --- a/ci/cudf_pandas_scripts/third-party-integration/run-library-tests.sh +++ b/ci/cudf_pandas_scripts/third-party-integration/run-library-tests.sh @@ -1,5 +1,5 @@ #!/bin/bash -# SPDX-FileCopyrightText: Copyright (c) 2024-2025, NVIDIA CORPORATION & AFFILIATES. All rights reserved. +# SPDX-FileCopyrightText: Copyright (c) 2024-2026, NVIDIA CORPORATION & AFFILIATES. All rights reserved. # SPDX-License-Identifier: Apache-2.0 cleanup() { @@ -21,7 +21,6 @@ runtest() { pytest \ "${plugin[@]}" \ -v \ - -W error \ --continue-on-collection-errors \ --cache-clear \ --numprocesses="${NUM_PROCESSES}" \ @@ -41,7 +40,6 @@ main() { --compare \ -p cudf.pandas \ -v \ - -W error \ --continue-on-collection-errors \ --cache-clear \ --numprocesses="${NUM_PROCESSES}" \