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

Mcknight/fix test store test #832

Merged
merged 8 commits into from
Oct 17, 2023
22 changes: 22 additions & 0 deletions tests/functional/adapter/test_store_test_failures.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,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 @@ -40,6 +51,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)
Expand Down