MCPcopy
hub / github.com/dask/dask / test_read_csv_skiprows_range

Function test_read_csv_skiprows_range

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

Source from the content-addressed store, hash-verified

544
545
546def test_read_csv_skiprows_range():
547 with filetext(csv_text) as fn:
548 f = dd.read_csv(fn, skiprows=range(5))
549 result = f
550 expected = pd.read_csv(fn, skiprows=range(5))
551 assert_eq(result, expected)
552
553
554def test_usecols():

Callers

nothing calls this directly

Calls 3

filetextFunction · 0.90
assert_eqFunction · 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…