@@ -1232,8 +1232,8 @@ def timedelta64_dtype(request):
1232
1232
return request .param
1233
1233
1234
1234
1235
- @pytest .fixture (params = tm .FLOAT_DTYPES )
1236
- def float_dtype (request ):
1235
+ @pytest .fixture (params = tm .FLOAT_NUMPY_DTYPES )
1236
+ def float_numpy_dtype (request ):
1237
1237
"""
1238
1238
Parameterized fixture for float dtypes.
1239
1239
@@ -1255,8 +1255,8 @@ def float_ea_dtype(request):
1255
1255
return request .param
1256
1256
1257
1257
1258
- @pytest .fixture (params = tm .FLOAT_DTYPES + tm .FLOAT_EA_DTYPES )
1259
- def any_float_allowed_nullable_dtype (request ):
1258
+ @pytest .fixture (params = tm .FLOAT_NUMPY_DTYPES + tm .FLOAT_EA_DTYPES )
1259
+ def any_float_dtype (request ):
1260
1260
"""
1261
1261
Parameterized fixture for float dtypes.
1262
1262
@@ -1281,8 +1281,8 @@ def complex_dtype(request):
1281
1281
return request .param
1282
1282
1283
1283
1284
- @pytest .fixture (params = tm .SIGNED_INT_DTYPES )
1285
- def sint_dtype (request ):
1284
+ @pytest .fixture (params = tm .SIGNED_INT_NUMPY_DTYPES )
1285
+ def any_signed_int_numpy_dtype (request ):
1286
1286
"""
1287
1287
Parameterized fixture for signed integer dtypes.
1288
1288
@@ -1295,8 +1295,8 @@ def sint_dtype(request):
1295
1295
return request .param
1296
1296
1297
1297
1298
- @pytest .fixture (params = tm .UNSIGNED_INT_DTYPES )
1299
- def uint_dtype (request ):
1298
+ @pytest .fixture (params = tm .UNSIGNED_INT_NUMPY_DTYPES )
1299
+ def any_unsigned_int_numpy_dtype (request ):
1300
1300
"""
1301
1301
Parameterized fixture for unsigned integer dtypes.
1302
1302
@@ -1308,8 +1308,8 @@ def uint_dtype(request):
1308
1308
return request .param
1309
1309
1310
1310
1311
- @pytest .fixture (params = tm .ALL_INT_DTYPES )
1312
- def any_int_dtype (request ):
1311
+ @pytest .fixture (params = tm .ALL_INT_NUMPY_DTYPES )
1312
+ def any_int_numpy_dtype (request ):
1313
1313
"""
1314
1314
Parameterized fixture for any integer dtype.
1315
1315
@@ -1326,8 +1326,8 @@ def any_int_dtype(request):
1326
1326
return request .param
1327
1327
1328
1328
1329
- @pytest .fixture (params = tm .ALL_EA_INT_DTYPES )
1330
- def any_nullable_int_dtype (request ):
1329
+ @pytest .fixture (params = tm .ALL_INT_EA_DTYPES )
1330
+ def any_int_ea_dtype (request ):
1331
1331
"""
1332
1332
Parameterized fixture for any nullable integer dtype.
1333
1333
@@ -1343,8 +1343,8 @@ def any_nullable_int_dtype(request):
1343
1343
return request .param
1344
1344
1345
1345
1346
- @pytest .fixture (params = tm .ALL_INT_DTYPES + tm .ALL_EA_INT_DTYPES )
1347
- def any_int_or_nullable_int_dtype (request ):
1346
+ @pytest .fixture (params = tm .ALL_INT_NUMPY_DTYPES + tm .ALL_INT_EA_DTYPES )
1347
+ def any_int_dtype (request ):
1348
1348
"""
1349
1349
Parameterized fixture for any nullable integer dtype.
1350
1350
@@ -1369,8 +1369,8 @@ def any_int_or_nullable_int_dtype(request):
1369
1369
return request .param
1370
1370
1371
1371
1372
- @pytest .fixture (params = tm .ALL_EA_INT_DTYPES + tm .FLOAT_EA_DTYPES )
1373
- def any_nullable_numeric_dtype (request ):
1372
+ @pytest .fixture (params = tm .ALL_INT_EA_DTYPES + tm .FLOAT_EA_DTYPES )
1373
+ def any_numeric_ea_dtype (request ):
1374
1374
"""
1375
1375
Parameterized fixture for any nullable integer dtype and
1376
1376
any float ea dtypes.
@@ -1389,8 +1389,8 @@ def any_nullable_numeric_dtype(request):
1389
1389
return request .param
1390
1390
1391
1391
1392
- @pytest .fixture (params = tm .SIGNED_EA_INT_DTYPES )
1393
- def any_signed_nullable_int_dtype (request ):
1392
+ @pytest .fixture (params = tm .SIGNED_INT_EA_DTYPES )
1393
+ def any_signed_int_ea_dtype (request ):
1394
1394
"""
1395
1395
Parameterized fixture for any signed nullable integer dtype.
1396
1396
@@ -1402,8 +1402,8 @@ def any_signed_nullable_int_dtype(request):
1402
1402
return request .param
1403
1403
1404
1404
1405
- @pytest .fixture (params = tm .ALL_REAL_DTYPES )
1406
- def any_real_dtype (request ):
1405
+ @pytest .fixture (params = tm .ALL_REAL_NUMPY_DTYPES )
1406
+ def any_real_numpy_dtype (request ):
1407
1407
"""
1408
1408
Parameterized fixture for any (purely) real numeric dtype.
1409
1409
0 commit comments