Skip to content

Commit 7a5ae13

Browse files
remove test_catalogs_returns_arrow_table test
metadata commands not expected to pass Signed-off-by: varun-edachali-dbx <varun.edachali@databricks.com>
1 parent 91b7f7f commit 7a5ae13

File tree

1 file changed

+2
-13
lines changed

1 file changed

+2
-13
lines changed

tests/e2e/test_driver.py

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -935,19 +935,8 @@ def test_decimal_not_returned_as_strings_arrow(self):
935935
assert pyarrow.types.is_decimal(decimal_type)
936936

937937
@skipUnless(pysql_supports_arrow(), "arrow test needs arrow support")
938-
@pytest.mark.parametrize(
939-
"extra_params",
940-
[
941-
{},
942-
{
943-
"use_sea": True,
944-
"use_cloud_fetch": False,
945-
"enable_query_result_lz4_compression": False,
946-
},
947-
],
948-
)
949-
def test_catalogs_returns_arrow_table(self, extra_params):
950-
with self.cursor(extra_params) as cursor:
938+
def test_catalogs_returns_arrow_table(self):
939+
with self.cursor() as cursor:
951940
cursor.catalogs()
952941
results = cursor.fetchall_arrow()
953942
assert isinstance(results, pyarrow.Table)

0 commit comments

Comments
 (0)