Skip to content

Commit

Permalink
adding test dbt full refresh
Browse files Browse the repository at this point in the history
  • Loading branch information
Sachin-Thakur committed Nov 8, 2023
1 parent 4525157 commit 00b0f2c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tests/functional/adapter/dbt_clone/test_dbt_clone.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import shutil
import os

class TestSnowflakeClonePossible(BaseClonePossible):
class TestVerticaClonePossible(BaseClonePossible):
def test_can_clone_true(self, project, unique_schema, other_schema):
project.create_test_schema(other_schema)
print(other_schema)
Expand Down Expand Up @@ -35,6 +35,7 @@ def test_can_clone_true(self, project, unique_schema, other_schema):
assert all("no-op" in r.message.lower() for r in results)

# recreate all objects
results = run_dbt([*clone_args, "--full-refresh"])
assert len(results) == 4

# select only models this time
Expand Down Expand Up @@ -68,7 +69,7 @@ def clean_up(self, project):
"""


class TestSnowflakeCloneTrainsentTable:
class TestVerticaCloneTrainsentTable:
@pytest.fixture(scope="class")
def models(self):
return {
Expand Down

0 comments on commit 00b0f2c

Please sign in to comment.