(freq)
| 1568 | "freq", ["A", "AS", "Q", "M", "H", "T", "S", "L", "U", "Y", "A-MAY"] |
| 1569 | ) |
| 1570 | def test_to_offset_deprecation_warning(freq): |
| 1571 | # Test for deprecations outlined in GitHub issue #8394 |
| 1572 | with pytest.warns(FutureWarning, match="is deprecated"): |
| 1573 | to_offset(freq) |
| 1574 | |
| 1575 | |
| 1576 | @pytest.mark.skipif(has_pandas_ge_2_2, reason="only relevant for pandas lt 2.2") |
nothing calls this directly
no test coverage detected
searching dependent graphs…