From 99e569be012eeb014f73f58dda11bed3ce5bd99d Mon Sep 17 00:00:00 2001 From: Felix Scherz Date: Thu, 9 Jan 2025 09:01:26 +0100 Subject: [PATCH] test: mark create_table_transaction test wiht xfail --- tests/catalog/integration_test_s3tables.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/catalog/integration_test_s3tables.py b/tests/catalog/integration_test_s3tables.py index e803b5a2b9..8cfcbe7b44 100644 --- a/tests/catalog/integration_test_s3tables.py +++ b/tests/catalog/integration_test_s3tables.py @@ -251,6 +251,7 @@ def test_commit_new_data_to_table(catalog: S3TablesCatalog, database_name: str, assert table.scan().to_arrow().num_rows == 2 * row_count +@pytest.mark.xfail(raises=NotImplementedError, reason="create_table_transaction not implemented yet") def test_create_table_transaction( catalog: S3TablesCatalog, database_name: str, table_name: str, table_schema_nested: str ) -> None: