(version)
| 282 | |
| 283 | @pytest.mark.pandas |
| 284 | def test_platform_numpy_integers(version): |
| 285 | data = {} |
| 286 | |
| 287 | numpy_dtypes = ['longlong'] |
| 288 | num_values = 100 |
| 289 | |
| 290 | for dtype in numpy_dtypes: |
| 291 | values = np.random.randint(0, 100, size=num_values) |
| 292 | data[dtype] = values.astype(dtype) |
| 293 | |
| 294 | df = pd.DataFrame(data) |
| 295 | _check_pandas_roundtrip(df, version=version) |
| 296 | |
| 297 | |
| 298 | @pytest.mark.pandas |
nothing calls this directly
no test coverage detected