class documentation

class LiveServerThread(threading.Thread): (source)

View In Hierarchy

Thread for running a live HTTP server while the tests are running.

Method __init__ Undocumented
Method run Set up the live server and databases, and then loop over handling HTTP requests.
Method terminate Undocumented
Instance Variable connections_override Undocumented
Instance Variable error Undocumented
Instance Variable host Undocumented
Instance Variable httpd Undocumented
Instance Variable is_ready Undocumented
Instance Variable port Undocumented
Instance Variable static_handler Undocumented
Method _create_server Undocumented
def __init__(self, host, static_handler, connections_override=None, port=0): (source)

Undocumented

def run(self): (source)

Set up the live server and databases, and then loop over handling HTTP requests.

def terminate(self): (source)

Undocumented

connections_override = (source)

Undocumented

Undocumented

Undocumented

Undocumented

is_ready = (source)

Undocumented

Undocumented

static_handler = (source)

Undocumented

def _create_server(self, connections_override=None): (source)

Undocumented