Skip to content

Commit

Permalink
Run IO tests for Dask-cuDF (#14327)
Browse files Browse the repository at this point in the history
We are not currently running any IO tests for `dask_cudf` in CI. This PR should correct this. It also modifies a test that *would* be failing due to #14326

Authors:
  - Richard (Rick) Zamora (https://github.com/rjzamora)
  - GALI PREM SAGAR (https://github.com/galipremsagar)

Approvers:
  - GALI PREM SAGAR (https://github.com/galipremsagar)
  - Ray Douglass (https://github.com/raydouglass)

URL: #14327
  • Loading branch information
rjzamora authored Oct 25, 2023
1 parent 865c21e commit 76bdb82
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 2 additions & 1 deletion ci/test_wheel_dask_cudf.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,5 @@ python -m pip install git+https://github.com/dask/[email protected] git+https://
# echo to expand wildcard before adding `[extra]` requires for pip
python -m pip install $(echo ./dist/dask_cudf*.whl)[test]

python -m pytest -n 8 ./python/dask_cudf/dask_cudf/tests
# Run tests in dask_cudf/tests and dask_cudf/io/tests
python -m pytest -n 8 ./python/dask_cudf/dask_cudf/
4 changes: 3 additions & 1 deletion python/dask_cudf/dask_cudf/io/tests/test_parquet.py
Original file line number Diff line number Diff line change
Expand Up @@ -481,7 +481,9 @@ def test_create_metadata_file_inconsistent_schema(tmpdir):
# call `compute` on `ddf1`, because the dtype of
# the inconsistent column ("a") may be "object"
# before computing, and "int" after
dd.assert_eq(ddf1.compute(), ddf2)
# TODO: Uncomment after cudf#14326 is closed
# (See: https://github.com/rapidsai/cudf/issues/14326)
# dd.assert_eq(ddf1.compute(), ddf2)
dd.assert_eq(ddf1.compute(), ddf2.compute())


Expand Down

0 comments on commit 76bdb82

Please sign in to comment.