Get environment URL
(self, environment_slug: str)
| 582 | return f"{self.slug}-env-{environment_slug}.{settings.deploy_domain}" |
| 583 | |
| 584 | def get_environment_url(self, environment_slug: str) -> str: |
| 585 | """Get environment URL""" |
| 586 | settings = get_settings() |
| 587 | return ( |
| 588 | f"{settings.url_scheme}://{self.get_environment_hostname(environment_slug)}" |
| 589 | ) |
| 590 | |
| 591 | def get_branch_hostname(self, branch: str) -> str: |
| 592 | """Get branch hostname""" |
nothing calls this directly
no test coverage detected