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

[internal] Temporarily disable integration tests due to ES-1302145 #3226

Merged
merged 1 commit into from
Nov 8, 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
20 changes: 15 additions & 5 deletions tests/integration/hive_metastore/test_table_move.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,14 @@ def test_move_tables_no_from_schema(ws, sql_backend, make_random, make_catalog,
assert len(rec_results) == 1


@retried(on=[NotFound], timeout=timedelta(minutes=2))
@pytest.mark.skip("ES-1302145") # TODO: remove `test_move_tables` skip after ES-1302145 is resolved
def test_move_tables(
ws, sql_backend, make_catalog, make_schema, make_table, make_acc_group
ws,
sql_backend,
make_catalog,
make_schema,
make_table,
make_acc_group,
): # pylint: disable=too-many-locals
table_move = TableMove(ws, sql_backend)
group_a = make_acc_group()
Expand Down Expand Up @@ -108,7 +113,7 @@ def test_move_tables_no_to_schema(ws, sql_backend, make_catalog, make_schema, ma
assert table.name == from_table_not_to_migrate.name


@retried(on=[NotFound], timeout=timedelta(minutes=2))
@pytest.mark.skip("ES-1302145") # TODO: remove `test_move_views` skip after ES-1302145 is resolved
def test_move_views(ws, sql_backend, make_catalog, make_schema, make_table, make_random):
table_move = TableMove(ws, sql_backend)
from_catalog = make_catalog()
Expand Down Expand Up @@ -144,9 +149,14 @@ def test_move_views(ws, sql_backend, make_catalog, make_schema, make_table, make
assert view.name in [from_view_not_to_migrate.name, from_table.name]


@retried(on=[NotFound], timeout=timedelta(minutes=2))
@pytest.mark.skip("ES-1302145") # TODO: remove `test_alias_tables` skip after ES-1302145 is resolved
def test_alias_tables(
ws, sql_backend, make_catalog, make_schema, make_table, make_acc_group
ws,
sql_backend,
make_catalog,
make_schema,
make_table,
make_acc_group,
): # pylint: disable=too-many-locals
table_move = TableMove(ws, sql_backend)
group_a = make_acc_group()
Expand Down
Loading