Skip to content

Commit a65b2e3

Browse files
h-vetinarijreback
authored andcommitted
Fixturize tests/frame/test_indexing.py (#25633)
1 parent bd72942 commit a65b2e3

File tree

2 files changed

+342
-330
lines changed

2 files changed

+342
-330
lines changed

pandas/tests/frame/conftest.py

+11
Original file line numberDiff line numberDiff line change
@@ -253,6 +253,17 @@ def timezone_frame():
253253
return df
254254

255255

256+
@pytest.fixture
257+
def uint64_frame():
258+
"""
259+
Fixture for DataFrame with uint64 values
260+
261+
Columns are ['A', 'B']
262+
"""
263+
return DataFrame({'A': np.arange(3), 'B': [2**63, 2**63 + 5, 2**63 + 10]},
264+
dtype=np.uint64)
265+
266+
256267
@pytest.fixture
257268
def simple_frame():
258269
"""

0 commit comments

Comments
 (0)