Skip to content

Commit

Permalink
revert to just reformatting changes
Browse files Browse the repository at this point in the history
  • Loading branch information
mikealfare committed Aug 19, 2023
1 parent d898469 commit 46e8aef
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 27 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,20 +56,30 @@ def query_row_count(project, relation: BaseRelation) -> int:
def query_relation_type(project, relation: BaseRelation) -> Optional[str]:
return query_relation_type(project, relation)

@pytest.mark.skip("")
def test_materialized_view_replaces_table(self, project, my_table):
super().test_materialized_view_replaces_table(project, my_table)

@pytest.mark.skip("")
def test_materialized_view_replaces_view(self, project, my_view):
super().test_materialized_view_replaces_view(project, my_view)

@pytest.mark.skip(
"The current implementation does not support overwriting materialized views with tables."
)
def test_table_replaces_materialized_view(self, project, my_materialized_view):
super().test_table_replaces_materialized_view(project, my_materialized_view)

@pytest.mark.skip(
"The current implementation does not support overwriting materialized views with views."
)
def test_view_replaces_materialized_view(self, project, my_materialized_view):
super().test_view_replaces_materialized_view(project, my_materialized_view)

@pytest.mark.skip(
"The current implementation does not support overwriting tables with materialized views."
)
def test_materialized_view_replaces_table(self, project, my_table):
super().test_materialized_view_replaces_table(project, my_table)

@pytest.mark.skip(
"The current implementation does not support overwriting views with materialized views."
)
def test_materialized_view_replaces_view(self, project, my_view):
super().test_materialized_view_replaces_view(project, my_view)


class PostgresMaterializedViewChanges(MaterializedViewChanges):
@pytest.fixture(scope="class", autouse=True)
Expand Down
19 changes: 0 additions & 19 deletions tests/unit/test_relation.py

This file was deleted.

0 comments on commit 46e8aef

Please sign in to comment.