Skip to content

Commit

Permalink
test(backends): remove now unused backend flag
Browse files Browse the repository at this point in the history
  • Loading branch information
kszucs committed Apr 11, 2024
1 parent 37ffa94 commit 04f5d24
Show file tree
Hide file tree
Showing 7 changed files with 0 additions and 8 deletions.
1 change: 0 additions & 1 deletion docs/contribute/05_reference.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ from ibis.backends.tests.base import BackendTest
class TestConf(BackendTest):
"""Backend-specific class with information for testing."""

supports_divide_by_zero = True
supports_floating_modulus = False
returned_timestamp_unit = "us"
supports_structs = True
Expand Down
1 change: 0 additions & 1 deletion ibis/backends/bigquery/tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
class TestConf(BackendTest):
"""Backend-specific class with information for testing."""

supports_divide_by_zero = True
supports_floating_modulus = False
returned_timestamp_unit = "us"
supports_structs = True
Expand Down
1 change: 0 additions & 1 deletion ibis/backends/datafusion/tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@

class TestConf(BackendTest):
# check_names = False
# supports_divide_by_zero = True
# returned_timestamp_unit = 'ns'
supports_structs = False
supports_json = False
Expand Down
1 change: 0 additions & 1 deletion ibis/backends/exasol/tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ class TestConf(ServiceBackendTest):
check_dtype = False
check_names = False
supports_arrays = False
supports_divide_by_zero = False
returned_timestamp_unit = "us"
supported_to_timestamp_units = {"s", "ms", "us"}
supports_floating_modulus = True
Expand Down
1 change: 0 additions & 1 deletion ibis/backends/impala/tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
class TestConf(BackendTest):
supports_arrays = True
check_dtype = False
supports_divide_by_zero = True
returned_timestamp_unit = "s"
supports_structs = False
supports_json = False
Expand Down
1 change: 0 additions & 1 deletion ibis/backends/pandas/tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
class TestConf(BackendTest):
check_names = False
supported_to_timestamp_units = BackendTest.supported_to_timestamp_units | {"ns"}
supports_divide_by_zero = True
returned_timestamp_unit = "ns"
stateful = False
rounding_method = "half_to_even"
Expand Down
2 changes: 0 additions & 2 deletions ibis/backends/tests/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,6 @@ class BackendTest(abc.ABC):
"Check that column name matches when comparing Pandas Series"
supports_arrays: bool = True
"Whether backend supports Arrays / Lists"
supports_divide_by_zero: bool = False
"Whether backend supports division by zero"
returned_timestamp_unit: str = "us"
supported_to_timestamp_units = {"s", "ms", "us"}
supports_floating_modulus: bool = True
Expand Down

0 comments on commit 04f5d24

Please sign in to comment.