Skip to content

Commit

Permalink
Update dask-cudf parquet tests to reflect upstream bugfixes to `_meta…
Browse files Browse the repository at this point in the history
…data` (#10206)

As pointed out in [this issue comment](#10141 (comment)), we should be good to update some of dask-cudf's parquet testing to reflect bug fixes merged in dask/dask#6047.

cc @rjzamora in case you see some other tests that could be resolved here

Authors:
  - Charles Blackmon-Luca (https://github.com/charlesbluca)

Approvers:
  - Richard (Rick) Zamora (https://github.com/rjzamora)

URL: #10206
  • Loading branch information
charlesbluca authored Feb 3, 2022
1 parent f4ac6d4 commit 4e97835
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions python/dask_cudf/dask_cudf/io/tests/test_parquet.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,7 @@ def test_roundtrip_from_dask(tmpdir, stats):
tmpdir = str(tmpdir)
ddf.to_parquet(tmpdir, engine="pyarrow")
files = sorted(
[
os.path.join(tmpdir, f)
for f in os.listdir(tmpdir)
# TODO: Allow "_metadata" in list after dask#6047
if not f.endswith("_metadata")
],
[os.path.join(tmpdir, f) for f in os.listdir(tmpdir)],
key=natural_sort_key,
)

Expand Down

0 comments on commit 4e97835

Please sign in to comment.