-
-
Notifications
You must be signed in to change notification settings - Fork 18.3k
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
TST: Add regression tests for fixed issues #31161
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.
lgtm, a couple of comments
pandas/tests/io/test_pickle.py
Outdated
# GH 12163 | ||
expected = pd.Series(dtype=object), MyTz() | ||
|
||
with tm.ensure_clean() as path: |
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.
can you use tm.round_trip_pickle
@@ -1413,3 +1413,12 @@ def test_constructor_tz_mixed_data(self): | |||
result = Series(dt_list) | |||
expected = Series(dt_list, dtype=object) | |||
tm.assert_series_equal(result, expected) | |||
|
|||
def test_contructor_dict_tuple_indexer(self): |
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.
can you move near the other contructor_dict tests
lgtm. merge on green. |
black pandas
git diff upstream/master -u -- "*.py" | flake8 --diff