MCPcopy
hub / github.com/dask/dask / test_string_blocksize

Function test_string_blocksize

dask/dataframe/io/tests/test_csv.py:564–571  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

562
563
564def test_string_blocksize():
565 with filetext(timeseries) as fn:
566 a = dd.read_csv(fn, blocksize="30B")
567 b = dd.read_csv(fn, blocksize="30")
568 assert a.npartitions == b.npartitions
569
570 c = dd.read_csv(fn, blocksize="64MiB")
571 assert c.npartitions == 1
572
573
574def test_skipinitialspace():

Callers

nothing calls this directly

Calls 2

filetextFunction · 0.90
read_csvMethod · 0.80

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…