-
-
Notifications
You must be signed in to change notification settings - Fork 18.6k
REF/TST: method-specific files for DataFrame timeseries methods #32230
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
REF/TST: method-specific files for DataFrame timeseries methods #32230
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@jbrockmendel lgtm
import numpy as np | ||
import pytest | ||
|
||
from pandas import DataFrame, NaT, date_range | ||
import pandas._testing as tm | ||
|
||
|
||
@pytest.fixture(params=product([True, False], [True, False])) | ||
def close_open_fixture(request): | ||
return request.param |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if this does not have utility beyond the one test in pandas/tests/frame/methods/test_between_time.py, I would remove in a follow-up
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
agreed
Thanks @jbrockmendel |
xref #32226.