()
| 794 | |
| 795 | |
| 796 | def test_abs_errors(): |
| 797 | df = pd.DataFrame( |
| 798 | { |
| 799 | "A": [1, -2, 3, -4, 5], |
| 800 | "C": ["a", "b", "c", "d", "e"], |
| 801 | } |
| 802 | ) |
| 803 | ddf = from_pandas(df, npartitions=2) |
| 804 | pytest.raises((TypeError, NotImplementedError, ValueError), lambda: ddf.C.abs()) |
| 805 | pytest.raises((TypeError, NotImplementedError), lambda: ddf.abs()) |
| 806 | |
| 807 | |
| 808 | def test_to_datetime_timezone(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…