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}" \ 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..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 @@ -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 once https://github.com/rapidsai/build-planning/issues/312 is fully resolved +filterwarnings = + error + ignore:`rapids-xgboost` will no longer be published:FutureWarning