File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -18,7 +18,6 @@ from ibis.backends.tests.base import BackendTest
1818class TestConf (BackendTest ):
1919 """ Backend-specific class with information for testing."""
2020
21- supports_divide_by_zero = True
2221 supports_floating_modulus = False
2322 returned_timestamp_unit = " us"
2423 supports_structs = True
Original file line number Diff line number Diff line change 2121class TestConf (BackendTest ):
2222 """Backend-specific class with information for testing."""
2323
24- supports_divide_by_zero = True
2524 supports_floating_modulus = False
2625 returned_timestamp_unit = "us"
2726 supports_structs = True
Original file line number Diff line number Diff line change 1212
1313class TestConf (BackendTest ):
1414 # check_names = False
15- # supports_divide_by_zero = True
1615 # returned_timestamp_unit = 'ns'
1716 supports_structs = False
1817 supports_json = False
Original file line number Diff line number Diff line change @@ -27,7 +27,6 @@ class TestConf(ServiceBackendTest):
2727 check_dtype = False
2828 check_names = False
2929 supports_arrays = False
30- supports_divide_by_zero = False
3130 returned_timestamp_unit = "us"
3231 supported_to_timestamp_units = {"s" , "ms" , "us" }
3332 supports_floating_modulus = True
Original file line number Diff line number Diff line change 2323class TestConf (BackendTest ):
2424 supports_arrays = True
2525 check_dtype = False
26- supports_divide_by_zero = True
2726 returned_timestamp_unit = "s"
2827 supports_structs = False
2928 supports_json = False
Original file line number Diff line number Diff line change 1818class TestConf (BackendTest ):
1919 check_names = False
2020 supported_to_timestamp_units = BackendTest .supported_to_timestamp_units | {"ns" }
21- supports_divide_by_zero = True
2221 returned_timestamp_unit = "ns"
2322 stateful = False
2423 rounding_method = "half_to_even"
Original file line number Diff line number Diff line change @@ -36,8 +36,6 @@ class BackendTest(abc.ABC):
3636 "Check that column name matches when comparing Pandas Series"
3737 supports_arrays : bool = True
3838 "Whether backend supports Arrays / Lists"
39- supports_divide_by_zero : bool = False
40- "Whether backend supports division by zero"
4139 returned_timestamp_unit : str = "us"
4240 supported_to_timestamp_units = {"s" , "ms" , "us" }
4341 supports_floating_modulus : bool = True
You can’t perform that action at this time.
0 commit comments