diff --git a/ibis/backends/tests/test_numeric.py b/ibis/backends/tests/test_numeric.py index cd4c68c0f453e..592e7d8a528a8 100644 --- a/ibis/backends/tests/test_numeric.py +++ b/ibis/backends/tests/test_numeric.py @@ -1196,6 +1196,11 @@ def test_mod(backend, alltypes, df): reason="bigquery doesn't support floating modulus", raises=GoogleBadRequest, ) +@pytest.mark.notyet( + ["flink"], + "Cannot apply '%' to arguments of type ' % '. Supported form(s): ' % ", + raises=Py4JError, +) def test_floating_mod(backend, alltypes, df): expr = operator.mod(alltypes.double_col, alltypes.smallint_col + 1).name("tmp")