Skip to content

Commit 19606da

Browse files
committed
Remove config dataframe.convert-string
Not applied in current version
1 parent e3145c6 commit 19606da

File tree

2 files changed

+1
-9
lines changed

2 files changed

+1
-9
lines changed

tests/conftest.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -691,12 +691,6 @@ def configure_shuffling(shuffle_method):
691691
yield
692692

693693

694-
@pytest.fixture
695-
def configure_use_pyarrow_strings():
696-
with dask.config.set({"dataframe.convert-string": True}):
697-
yield
698-
699-
700694
# Include https://github.com/dask/distributed/pull/7534
701695
P2P_RECHUNK_AVAILABLE = Version(distributed.__version__) >= Version("2023.2.1")
702696

tests/workflows/test_from_csv_to_parquet.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -102,9 +102,7 @@ def from_csv_to_parquet_client(
102102
)
103103

104104

105-
def test_from_csv_to_parquet(
106-
from_csv_to_parquet_client, s3_factory, s3_url, configure_use_pyarrow_strings
107-
):
105+
def test_from_csv_to_parquet(from_csv_to_parquet_client, s3_factory, s3_url):
108106
s3 = s3_factory(anon=True)
109107
files = s3.ls("s3://gdelt-open-data/events/")[:1000]
110108
files = [f"s3://{f}" for f in files]

0 commit comments

Comments
 (0)