Create a Crew deployment.
(yes: bool, skip_validate: bool)
| 582 | help="Skip the pre-deploy validation checks.", |
| 583 | ) |
| 584 | def deploy_create(yes: bool, skip_validate: bool) -> None: |
| 585 | """Create a Crew deployment.""" |
| 586 | deploy_cmd = DeployCommand() |
| 587 | deploy_cmd.create_crew(yes, skip_validate=skip_validate) |
| 588 | |
| 589 | |
| 590 | @deploy.command(name="list") |
nothing calls this directly
no test coverage detected
searching dependent graphs…