()
| 3389 | |
| 3390 | |
| 3391 | def test_dataframe_itertuples(): |
| 3392 | df = pd.DataFrame({"x": [1, 2, 3, 4], "y": [10, 20, 30, 40]}) |
| 3393 | ddf = dd.from_pandas(df, npartitions=2) |
| 3394 | |
| 3395 | for a, b in zip(df.itertuples(), ddf.itertuples()): |
| 3396 | assert a == b |
| 3397 | |
| 3398 | |
| 3399 | @pytest.mark.parametrize( |
nothing calls this directly
no test coverage detected