Skip to content

Commit

Permalink
Tests run dbt clean before tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ismailsimsek committed Dec 17, 2024
1 parent b70e21d commit d10a2a9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/base_dbt_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class BaseDbtTest(TestCase):

@classmethod
def setUpClass(cls):
dpf = OpenDbtCli(project_dir=BaseDbtTest.DBTFINANCE_DIR)
dpc = OpenDbtCli(project_dir=BaseDbtTest.DBTCORE_DIR)
dpc.invoke(args=["clean"])
dpf = OpenDbtCli(project_dir=BaseDbtTest.DBTFINANCE_DIR, profiles_dir=BaseDbtTest.DBTFINANCE_DIR)
dpc = OpenDbtCli(project_dir=BaseDbtTest.DBTCORE_DIR, profiles_dir=BaseDbtTest.DBTCORE_DIR)
dpf.invoke(args=["clean"])
dpc.invoke(args=["clean"])

0 comments on commit d10a2a9

Please sign in to comment.