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

[Backport 1.5.latest] Mcknight/fix test store test #919

Merged
merged 1 commit into from
Oct 24, 2023
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
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,17 @@ def project_config_update(self):
"tests": {"+schema": TEST_AUDIT_SCHEMA_SUFFIX, "+store_failures": True},
}

@pytest.fixture(scope="function", autouse=True)
def teardown_method(self, project):
yield
with project.adapter.connection_named("__test"):
relation = project.adapter.Relation.create(
database=project.database,
schema=f"{project.test_schema}_{TEST_AUDIT_SCHEMA_SUFFIX}",
)

project.adapter.drop_schema(relation)

def test_store_and_assert(self, project):
self.run_tests_store_one_failure(project)
self.run_tests_store_failures_and_assert(project)
Expand All @@ -39,6 +50,17 @@ def project_config_update(self):
},
}

@pytest.fixture(scope="function", autouse=True)
def teardown_method(self, project):
yield
with project.adapter.connection_named("__test"):
relation = project.adapter.Relation.create(
database=project.database,
schema=f"{project.test_schema}_{TEST_AUDIT_SCHEMA_SUFFIX}",
)

project.adapter.drop_schema(relation)

def test_store_and_assert_failure_with_delta(self, project):
self.run_tests_store_one_failure(project)
self.run_tests_store_failures_and_assert(project)
Loading