Skip to content

Commit

Permalink
chore: add error to noimpl param to druid test window
Browse files Browse the repository at this point in the history
  • Loading branch information
ncclementi committed Aug 1, 2024
1 parent 00be355 commit 9dde9d4
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion ibis/backends/tests/test_window.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,20 @@
MySQLOperationalError,
PsycoPg2InternalError,
Py4JJavaError,
PyDruidProgrammingError,
PyODBCProgrammingError,
SnowflakeProgrammingError,
)
from ibis.legacy.udf.vectorized import analytic, reduction

pytestmark = [
pytest.mark.notimpl(
["druid"], raises=(com.OperationNotDefinedError, com.TableNotFound)
["druid"],
raises=(
com.OperationNotDefinedError,
com.TableNotFound,
PyDruidProgrammingError,
),
)
]

Expand Down

0 comments on commit 9dde9d4

Please sign in to comment.