(pdf)
| 112 | |
| 113 | |
| 114 | def test_value_counts_sort(pdf): |
| 115 | pdf = pdf.iloc[4:] |
| 116 | df = from_pandas(pdf, npartitions=10) |
| 117 | pd.testing.assert_series_equal( |
| 118 | df.y.value_counts(split_out=1).compute(), |
| 119 | pdf.y.value_counts(), |
| 120 | ) |
| 121 | |
| 122 | |
| 123 | @pytest.mark.parametrize("split_every", [None, 5]) |
nothing calls this directly
no test coverage detected