@@ -86,19 +86,19 @@ def test_to_numpy_python_types(data, expected_dtype):
8686 pytest .param (np .int16 , np .int16 , id = "int16" ),
8787 pytest .param (np .int32 , np .int32 , id = "int32" ),
8888 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"),
9090 pytest .param (np .uint8 , np .uint8 , id = "uint8" ),
9191 pytest .param (np .uint16 , np .uint16 , id = "uint16" ),
9292 pytest .param (np .uint32 , np .uint32 , id = "uint32" ),
9393 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"),
9696 pytest .param (np .float32 , np .float32 , id = "float32" ),
9797 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"),
9999 pytest .param (np .complex64 , np .complex64 , id = "complex64" ),
100100 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"),
102102]
103103
104104
0 commit comments