Feat: service work but do nothing!
This commit is contained in:
9
bopytex/planner/fake_planner.py
Normal file
9
bopytex/planner/fake_planner.py
Normal file
@@ -0,0 +1,9 @@
|
||||
from bopytex.tasks import Task
|
||||
|
||||
|
||||
def simple(options: dict) -> list[Task]:
|
||||
"""Simple planner with options['quantity'] tasks and no dependencies"""
|
||||
return [
|
||||
Task("Do", args={"number": i}, deps=[], output=f"{i}")
|
||||
for i in range(options["quantity"])
|
||||
]
|
||||
Reference in New Issue
Block a user