Skip to content

Commit ef486e4

Browse files
committed
Remove moar skip's
1 parent 4532201 commit ef486e4

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

tests/integration/test_writes/test_writes.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@
4040

4141
from pyiceberg.catalog import Catalog, load_catalog
4242
from pyiceberg.catalog.hive import HiveCatalog
43-
from pyiceberg.catalog.rest import RestCatalog
4443
from pyiceberg.catalog.sql import SqlCatalog
4544
from pyiceberg.exceptions import NoSuchTableError
4645
from pyiceberg.expressions import And, EqualTo, GreaterThanOrEqual, In, LessThan, Not
@@ -937,11 +936,6 @@ def test_create_table_transaction(catalog: Catalog, format_version: int) -> None
937936
@pytest.mark.parametrize("format_version", [1, 2])
938937
@pytest.mark.parametrize("catalog", [pytest.lazy_fixture("session_catalog_hive"), pytest.lazy_fixture("session_catalog")])
939938
def test_create_table_with_non_default_values(catalog: Catalog, table_schema_with_all_types: Schema, format_version: int) -> None:
940-
if format_version == 1 and isinstance(catalog, RestCatalog):
941-
pytest.skip(
942-
"There is a bug in the REST catalog image (https://github.com/apache/iceberg/issues/8756) that prevents create and commit a staged version 1 table"
943-
)
944-
945939
identifier = f"default.arrow_create_table_transaction_with_non_default_values_{catalog.name}_{format_version}"
946940
identifier_ref = f"default.arrow_create_table_transaction_with_non_default_values_ref_{catalog.name}_{format_version}"
947941

0 commit comments

Comments
 (0)