Skip to content

Commit 1b074b0

Browse files
committed
chore(test): use more precise marker for backends that don't support arrays.
I'm cherry-picking some of the changes that I have in ibis-project#9473 that are still useful without the rest of that PR.
1 parent 6cf461f commit 1b074b0

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

ibis/backends/tests/test_string.py

+6-1
Original file line numberDiff line numberDiff line change
@@ -827,8 +827,13 @@ def test_capitalize(con, inp, expected):
827827
assert pd.isnull(result)
828828

829829

830+
@pytest.mark.notyet(
831+
["exasol", "impala", "mssql", "mysql", "sqlite"],
832+
reason="Backend doesn't support arrays",
833+
raises=(com.OperationNotDefinedError, com.UnsupportedBackendType),
834+
)
830835
@pytest.mark.notimpl(
831-
["polars", "oracle", "flink", "sqlite", "mssql", "mysql", "exasol", "impala"],
836+
["polars", "oracle", "flink"],
832837
raises=com.OperationNotDefinedError,
833838
)
834839
def test_array_string_join(con):

0 commit comments

Comments
 (0)