(pd)
| 1054 | |
| 1055 | |
| 1056 | def test_date2num_dst_pandas(pd): |
| 1057 | # Test for github issue #3896, but in date2num around DST transitions |
| 1058 | # with a timezone-aware pandas date_range object. |
| 1059 | |
| 1060 | def tz_convert(*args): |
| 1061 | return pd.DatetimeIndex.tz_convert(*args).astype(object) |
| 1062 | |
| 1063 | _test_date2num_dst(pd.date_range, tz_convert) |
| 1064 | |
| 1065 | |
| 1066 | def _test_rrulewrapper(attach_tz, get_tz): |
nothing calls this directly
no test coverage detected
searching dependent graphs…