Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Test Fix] Skip test_structured_type_schema_expression in unsupportd accounts #2714

Merged
merged 1 commit into from
Dec 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion tests/integ/scala/test_datatype_suite.py
Original file line number Diff line number Diff line change
Expand Up @@ -979,7 +979,12 @@ def test_structured_type_print_schema(
def test_structured_type_schema_expression(
structured_type_session, local_testing_mode, structured_type_support
):
if not structured_type_support:
# Test does not require iceberg support, but does require FDN table structured type support
# which is enabled in the same accounts as iceberg.
if not (
structured_type_support
and iceberg_supported(structured_type_session, local_testing_mode)
):
pytest.skip("Test requires structured type support.")

table_name = f"snowpark_schema_expresion_test_{uuid.uuid4().hex[:5]}".upper()
Expand Down
Loading