Skip to content

Commit

Permalink
Temporarily disabling problematic test in parquet writer (#9230)
Browse files Browse the repository at this point in the history
There is a bug in parquet writer that shows up in one pytest.
Disabling this test to unblock CI for other PRs.

Related to #9231

Authors:
  - Devavret Makkar (https://github.com/devavret)

Approvers:
  - https://github.com/brandon-b-miller

URL: #9230
  • Loading branch information
devavret authored Sep 15, 2021
1 parent cbc6ebb commit 651ec49
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions python/cudf/cudf/tests/test_parquet.py
Original file line number Diff line number Diff line change
Expand Up @@ -2036,6 +2036,9 @@ def test_parquet_writer_nulls_pandas_read(tmpdir, pdf):
gdf = cudf.from_pandas(pdf)

num_rows = len(gdf)
if num_rows == 1:
pytest.skip("Skipping due a bug in parquet writer with all null df")

if num_rows > 0:
for col in gdf.columns:
gdf[col][random.randint(0, num_rows - 1)] = None
Expand Down

0 comments on commit 651ec49

Please sign in to comment.