Skip to content

Commit

Permalink
chore(test): use more precise marker for backends that don't support …
Browse files Browse the repository at this point in the history
…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.
  • Loading branch information
NickCrews committed Dec 3, 2024
1 parent 6cf461f commit 1b074b0
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion ibis/backends/tests/test_string.py
Original file line number Diff line number Diff line change
Expand Up @@ -827,8 +827,13 @@ def test_capitalize(con, inp, expected):
assert pd.isnull(result)


@pytest.mark.notyet(
["exasol", "impala", "mssql", "mysql", "sqlite"],
reason="Backend doesn't support arrays",
raises=(com.OperationNotDefinedError, com.UnsupportedBackendType),
)
@pytest.mark.notimpl(
["polars", "oracle", "flink", "sqlite", "mssql", "mysql", "exasol", "impala"],
["polars", "oracle", "flink"],
raises=com.OperationNotDefinedError,
)
def test_array_string_join(con):
Expand Down

0 comments on commit 1b074b0

Please sign in to comment.