-
-
Notifications
You must be signed in to change notification settings - Fork 18.5k
Fixturize tests/frame/test_indexing.py #25633
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
Changes from all commits
ddc1d44
d539d97
faf3544
5effd7c
d4dfc17
bfe3025
599c6a3
d1c0bf4
df31996
4e48d44
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -253,6 +253,17 @@ def timezone_frame(): | |
return df | ||
|
||
|
||
@pytest.fixture | ||
def uint64_frame(): | ||
""" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. instead of this can you just use the mixed_int_frame (maybe even add a column to it if needed) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Nope, not changing the semantics of tests here. Just translating. |
||
Fixture for DataFrame with uint64 values | ||
|
||
Columns are ['A', 'B'] | ||
""" | ||
return DataFrame({'A': np.arange(3), 'B': [2**63, 2**63 + 5, 2**63 + 10]}, | ||
dtype=np.uint64) | ||
|
||
|
||
@pytest.fixture | ||
def simple_frame(): | ||
""" | ||
|
Uh oh!
There was an error while loading. Please reload this page.