Skip to content
Open
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
Original file line number Diff line number Diff line change
@@ -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() {
Expand All @@ -21,7 +21,6 @@ runtest() {
pytest \
"${plugin[@]}" \
-v \
-W error \
--continue-on-collection-errors \
--cache-clear \
--numprocesses="${NUM_PROCESSES}" \
Expand All @@ -41,7 +40,6 @@ main() {
--compare \
-p cudf.pandas \
-v \
-W error \
--continue-on-collection-errors \
--cache-clear \
--numprocesses="${NUM_PROCESSES}" \
Expand Down
Original file line number Diff line number Diff line change
@@ -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]
Expand All @@ -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
Loading