Skip to content

Commit

Permalink
fix last test failure
Browse files Browse the repository at this point in the history
  • Loading branch information
benc-db committed Oct 17, 2024
1 parent 7ade86c commit 8e8f1ac
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ def build_submitter(self) -> PythonSubmitter:
class PythonWorkflowConfigExtractor(PythonJobConfigExtractor):
def __init__(self, parsed_model: Dict[str, Any]) -> None:
super().__init__(parsed_model)
self.existing_job_id = self.job_config.pop("existing_job_id")
self.existing_job_id = self.job_config.pop("existing_job_id", "")
self.workflow_name = self.job_config.get(
"name", f"dbt__{self.database}-{self.schema}-{self.identifier}"
)
Expand Down
2 changes: 1 addition & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@


def pytest_addoption(parser):
parser.addoption("--profile", action="store", default="databricks_uc_sql_endpoint", type=str)
parser.addoption("--profile", action="store", default="databricks_uc_cluster", type=str)


# Using @pytest.mark.skip_profile('databricks_cluster') uses the 'skip_by_adapter_type'
Expand Down

0 comments on commit 8e8f1ac

Please sign in to comment.