Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Ishankoradia committed Dec 16, 2024
1 parent f40974d commit 2846601
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
5 changes: 0 additions & 5 deletions ddpui/tests/api_tests/test_pipeline_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,6 @@ def test_post_prefect_dataflow_v1_failure1(orguser):
name="test-dataflow",
connections=connections,
cron="",
alignment="simple",
transformTasks=[],
)
orguser.org = None
Expand All @@ -278,7 +277,6 @@ def test_post_prefect_dataflow_v1_failure2(orguser_transform_tasks):
connections=connections,
cron="",
transformTasks=[],
alignment="simple",
)
request = mock_request(orguser_transform_tasks)

Expand Down Expand Up @@ -314,7 +312,6 @@ def test_post_prefect_dataflow_v1_success(orguser_transform_tasks):
connections=connections,
cron="test-cron",
transformTasks=[],
alignment="simple",
)

deployment = post_prefect_dataflow_v1(request, payload)
Expand Down Expand Up @@ -363,7 +360,6 @@ def test_post_prefect_dataflow_v1_success2(orguser_transform_tasks):
name="test-dataflow",
connections=connections,
cron="test-cron",
alignment="simple",
transformTasks=[
PrefectDataFlowOrgTasks(uuid=str(org_task.uuid), seq=idx)
for idx, org_task in enumerate(transform_tasks)
Expand Down Expand Up @@ -619,7 +615,6 @@ def test_get_prefect_dataflow_v1_success(orguser_transform_tasks):
name="test-dataflow",
connections=connections,
cron="test-cron",
alignment="simple",
transformTasks=[
PrefectDataFlowOrgTasks(uuid=str(org_task.uuid), seq=idx)
for idx, org_task in enumerate(transform_tasks)
Expand Down
2 changes: 1 addition & 1 deletion ddpui/utils/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
TASK_DBTTEST = "dbt-test"
TASK_DBTCLEAN = "dbt-clean"
TASK_DBTDEPS = "dbt-deps"
TASK_GITPULL = ("git-pull",)
TASK_GITPULL = "git-pull"
TASK_DBTCLOUD_JOB = "dbt-cloud-job" # this is task slug so it should match the seed data.
TASK_DOCSGENERATE = "dbt-docs-generate"
TASK_AIRBYTESYNC = "airbyte-sync"
Expand Down

0 comments on commit 2846601

Please sign in to comment.