Skip to content

Commit f1ff2fe

Browse files
authored
Skip a decompression test (rapidsai#18825)
The test fails on a nightly CUDA 11.8 config; skipping for now as the tested functionality is opt-in and has an alternative. Authors: - Vukasin Milovanovic (https://github.com/vuule) Approvers: - Vyas Ramasubramani (https://github.com/vyasr) URL: rapidsai#18825
1 parent dc2d234 commit f1ff2fe

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

python/cudf/cudf/tests/test_parquet.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4467,6 +4467,9 @@ def my_pdf(request):
44674467

44684468
@pytest.mark.parametrize("compression", ["brotli", "gzip", "snappy", "zstd"])
44694469
def test_parquet_decompression(set_decomp_env_vars, my_pdf, compression):
4470+
if compression == "snappy":
4471+
pytest.skip("Skipping because of a known issue on CUDA 11.8")
4472+
44704473
# PANDAS returns category objects whereas cuDF returns hashes
44714474
expect = my_pdf.drop(columns=["col_category"])
44724475

0 commit comments

Comments
 (0)