diff --git a/CHANGELOG.md b/CHANGELOG.md index 8e2303124..1d99caff4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,7 @@ - #1331 Added flag to enable null e2e testing - #1418 Adding support for docker image - #1419 Added concat cache machine timeout +- #1431 Removed dask_cudf e2e workaround since cudf issue 7572 was already fixed ## Bug Fixes - #1335 Fixing uninitialized var in orc metadata and handling the parseMetadata exceptions properly diff --git a/tests/BlazingSQLTest/Utils/__init__.py b/tests/BlazingSQLTest/Utils/__init__.py index ea8416777..fa66e1178 100644 --- a/tests/BlazingSQLTest/Utils/__init__.py +++ b/tests/BlazingSQLTest/Utils/__init__.py @@ -30,12 +30,6 @@ def test_name(queryType, fileSchemaType): def skip_test(dask_client, nRals, fileSchemaType, queryType): testsWithNulls = Settings.data["RunSettings"]["testsWithNulls"] - if fileSchemaType == DataType.DASK_CUDF: - # Skipping combination DASK_CUDF and testsWithNulls="true" - # due to https://github.com/rapidsai/cudf/issues/7572 - if dask_client is None or testsWithNulls == "true": - return True - if fileSchemaType == DataType.CUDF: # TODO dask tests percy kharoly c.gonzales # skip gdf test when we are about to run tests