(self)
| 1783 | ) |
| 1784 | |
| 1785 | def terminate(self): |
| 1786 | if self.is_ready.is_set(): |
| 1787 | if hasattr(self, "httpd"): |
| 1788 | # Stop the WSGI server |
| 1789 | self.httpd.shutdown() |
| 1790 | self.httpd.server_close() |
| 1791 | self.join() |
| 1792 | |
| 1793 | |
| 1794 | class LiveServerTestCase(TransactionTestCase): |
no test coverage detected