Skip to content

Commit

Permalink
Fix some tests for real this time
Browse files Browse the repository at this point in the history
  • Loading branch information
desertaxle committed Feb 5, 2025
1 parent ff16fa7 commit 2664ecb
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/prefect/deployments/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -537,6 +537,7 @@ def from_flow(
cron=cron,
rrule=rrule,
schedules=schedules,
schedule=schedule,
)

job_variables = job_variables or {}
Expand Down Expand Up @@ -631,6 +632,7 @@ def from_entrypoint(
cron: Optional[Union[Iterable[str], str]] = None,
rrule: Optional[Union[Iterable[str], str]] = None,
paused: Optional[bool] = None,
schedule: Optional[Schedule] = None,
schedules: Optional["FlexibleScheduleList"] = None,
concurrency_limit: Optional[Union[int, ConcurrencyLimitConfig, None]] = None,
parameters: Optional[dict[str, Any]] = None,
Expand Down Expand Up @@ -686,6 +688,7 @@ def from_entrypoint(
cron=cron,
rrule=rrule,
schedules=schedules,
schedule=schedule,
)

if isinstance(concurrency_limit, ConcurrencyLimitConfig):
Expand Down Expand Up @@ -792,6 +795,7 @@ async def afrom_storage(
cron=cron,
rrule=rrule,
schedules=schedules,
schedule=schedule,
)

if isinstance(concurrency_limit, ConcurrencyLimitConfig):
Expand Down Expand Up @@ -913,6 +917,7 @@ def from_storage(
cron=cron,
rrule=rrule,
schedules=schedules,
schedule=schedule,
)

if isinstance(concurrency_limit, ConcurrencyLimitConfig):
Expand Down

0 comments on commit 2664ecb

Please sign in to comment.