(self, scheme, hostname, path='/')
| 585 | duration=datetime.now() - start) |
| 586 | |
| 587 | def mkurl(self, scheme, hostname, path='/'): |
| 588 | port = self.https_port if scheme == 'https' else self.http_port |
| 589 | return f"{scheme}://{hostname}.{self.http_tld}:{port}{path}" |
| 590 | |
| 591 | def install_test_conf(self, lines: List[str]): |
| 592 | self.apache_stop() |
no outgoing calls