()
| 3390 | |
| 3391 | |
| 3392 | def test_dataframe_iterrows(): |
| 3393 | df = pd.DataFrame({"x": [1, 2, 3, 4], "y": [10, 20, 30, 40]}) |
| 3394 | ddf = dd.from_pandas(df, npartitions=2) |
| 3395 | |
| 3396 | for a, b in zip(df.iterrows(), ddf.iterrows()): |
| 3397 | tm.assert_series_equal(a[1], b[1]) |
| 3398 | |
| 3399 | |
| 3400 | def test_dataframe_itertuples(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…