From 78231ff75f951f4e340b58ed515c71da271cf5f4 Mon Sep 17 00:00:00 2001 From: Angus Hollands Date: Thu, 19 Oct 2023 23:25:20 +0100 Subject: [PATCH] test: importorskip arrow (unrelated) --- tests/test_2757_attrs_metadata.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/test_2757_attrs_metadata.py b/tests/test_2757_attrs_metadata.py index df30317de3..34b3c3bc49 100644 --- a/tests/test_2757_attrs_metadata.py +++ b/tests/test_2757_attrs_metadata.py @@ -104,6 +104,7 @@ def test_single_arg_ops(func): ], ) def test_string_operations_unary(func): + pytest.importorskip("pyarrow") # Default no attrs assert ( func( @@ -156,6 +157,7 @@ def test_string_operations_unary(func): ], ) def test_string_operations_unary_with_arg(func, arg): + pytest.importorskip("pyarrow") # Default no attrs assert ( func( @@ -197,6 +199,7 @@ def test_string_operations_unary_with_arg(func, arg): ], ) def test_string_operations_binary(func): + pytest.importorskip("pyarrow") assert ( func( [["hello", "world!"], [], ["it's a beautiful day!"]],