Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Nov 18, 2023
1 parent 0e185fc commit ecdda8b
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions tests/functional/adapter/test_basic.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
test_empty,
test_ephemeral,
test_generic_tests,
test_incremental ,
test_incremental,
test_singular_tests,
test_singular_tests_ephemeral,
test_snapshot_check_cols,
Expand All @@ -19,6 +19,7 @@
test_validate_connection,
)


class TestSimpleMaterializationsSQLServer(test_base.BaseSimpleMaterializations):
pass

Expand All @@ -28,13 +29,16 @@ class TestSingularTestsSQLServer(test_singular_tests.BaseSingularTests):


@pytest.mark.skip(reason="ephemeral not supported")
class TestSingularTestsEphemeralSQLServer(test_singular_tests_ephemeral.BaseSingularTestsEphemeral):
class TestSingularTestsEphemeralSQLServer(
test_singular_tests_ephemeral.BaseSingularTestsEphemeral
):
pass


class TestEmptySQLServer(test_empty.BaseEmpty):
pass


class TestEphemeralSQLServer(test_ephemeral.BaseEphemeral):
pass

Expand All @@ -43,7 +47,9 @@ class TestIncrementalSQLServer(test_incremental.BaseIncremental):
pass


class TestIncrementalNotSchemaChangeSQLServer(test_incremental.BaseIncrementalNotSchemaChange):
class TestIncrementalNotSchemaChangeSQLServer(
test_incremental.BaseIncrementalNotSchemaChange
):
@pytest.fixture(scope="class")
def models(self):
return {
Expand Down

0 comments on commit ecdda8b

Please sign in to comment.