Skip to content

Commit

Permalink
implement store-failures-as tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mikealfare committed Oct 3, 2023
1 parent 8dd19be commit c16095e
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 114 deletions.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
import pytest

from dbt.tests.adapter.store_test_failures_tests.basic import (
StoreTestFailuresAsGeneric,
StoreTestFailuresAsInteractions,
StoreTestFailuresAsProjectLevelOff,
StoreTestFailuresAsProjectLevelView,
)
from dbt.tests.adapter.store_test_failures_tests.test_store_test_failures import (
StoreTestFailuresBase,
TEST_AUDIT_SCHEMA_SUFFIX,
Expand Down Expand Up @@ -42,3 +48,19 @@ def project_config_update(self):
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)


class TestSparkStoreTestFailuresAsInteractions(StoreTestFailuresAsInteractions):
pass


class TestSparkStoreTestFailuresAsProjectLevelOff(StoreTestFailuresAsProjectLevelOff):
pass


class TestSparkStoreTestFailuresAsProjectLevelView(StoreTestFailuresAsProjectLevelView):
pass


class TestSparkStoreTestFailuresAsGeneric(StoreTestFailuresAsGeneric):
pass

0 comments on commit c16095e

Please sign in to comment.