From e09aa75f78f4a99a44b6d62bd8c44adba0bb2896 Mon Sep 17 00:00:00 2001 From: Dongdong Tian Date: Thu, 7 Nov 2024 23:41:06 +0800 Subject: [PATCH] Enable the test for float16[pyarrow] --- pygmt/tests/test_clib_to_numpy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pygmt/tests/test_clib_to_numpy.py b/pygmt/tests/test_clib_to_numpy.py index d08337969a1..7a433ce570d 100644 --- a/pygmt/tests/test_clib_to_numpy.py +++ b/pygmt/tests/test_clib_to_numpy.py @@ -205,7 +205,7 @@ def test_to_numpy_pandas_series_pyarrow_dtypes_numeric(dtype, expected_dtype): pytest.param("uint16[pyarrow]", np.float64, id="uint16[pyarrow]"), pytest.param("uint32[pyarrow]", np.float64, id="uint32[pyarrow]"), pytest.param("uint64[pyarrow]", np.float64, id="uint64[pyarrow]"), - # pytest.param("float16[pyarrow]", np.float64, id="float16[pyarrow]"), + pytest.param("float16[pyarrow]", np.float16, id="float16[pyarrow]"), pytest.param("float32[pyarrow]", np.float32, id="float32[pyarrow]"), pytest.param("float64[pyarrow]", np.float64, id="float64[pyarrow]"), ],