(
env: Env,
stages: Iterable[Stage],
from_stage: Optional[AnyStr] = None,
build_lock: bool = True,
)
| 12 | |
| 13 | |
| 14 | def run_generation( |
| 15 | env: Env, |
| 16 | stages: Iterable[Stage], |
| 17 | from_stage: Optional[AnyStr] = None, |
| 18 | build_lock: bool = True, |
| 19 | ): |
| 20 | generation = Generation(env, build_lock) |
| 21 | for s in stages: |
| 22 | generation.add_stage(s) |
| 23 | |
| 24 | generation.run(from_stage) |
| 25 | |
| 26 | |
| 27 | def generate_maps(env: Env, from_stage: Optional[AnyStr] = None): |
no test coverage detected