@@ -86,19 +86,19 @@ def test_to_numpy_python_types(data, expected_dtype):
86
86
pytest .param (np .int16 , np .int16 , id = "int16" ),
87
87
pytest .param (np .int32 , np .int32 , id = "int32" ),
88
88
pytest .param (np .int64 , np .int64 , id = "int64" ),
89
- pytest .param (np .longlong , np .longlong , id = "longlong" ),
89
+ # pytest.param(np.longlong, np.longlong, id="longlong"),
90
90
pytest .param (np .uint8 , np .uint8 , id = "uint8" ),
91
91
pytest .param (np .uint16 , np .uint16 , id = "uint16" ),
92
92
pytest .param (np .uint32 , np .uint32 , id = "uint32" ),
93
93
pytest .param (np .uint64 , np .uint64 , id = "uint64" ),
94
- pytest .param (np .ulonglong , np .ulonglong , id = "ulonglong" ),
95
- pytest .param (np .float16 , np .float16 , id = "float16" ),
94
+ # pytest.param(np.ulonglong, np.ulonglong, id="ulonglong"),
95
+ # pytest.param(np.float16, np.float16, id="float16"),
96
96
pytest .param (np .float32 , np .float32 , id = "float32" ),
97
97
pytest .param (np .float64 , np .float64 , id = "float64" ),
98
- pytest .param (np .longdouble , np .longdouble , id = "longdouble" ),
98
+ # pytest.param(np.longdouble, np.longdouble, id="longdouble"),
99
99
pytest .param (np .complex64 , np .complex64 , id = "complex64" ),
100
100
pytest .param (np .complex128 , np .complex128 , id = "complex128" ),
101
- pytest .param (np .clongdouble , np .clongdouble , id = "clongdouble" ),
101
+ # pytest.param(np.clongdouble, np.clongdouble, id="clongdouble"),
102
102
]
103
103
104
104
0 commit comments