def main():
    url = "http://localhost:9292"
    thread = Thread.run("run app", run_app)

    try:
        server_is_ready.wait_for_go()
        all_tests(url)
    finally:
        thread.please_stop.go()
        Log.stop()
def main():
    url = "http://localhost:9292"
    thread = Thread.run("run app", run_app)

    try:
        server_is_ready.wait_for_go()
        all_tests(url)
    finally:
        thread.please_stop.go()
        Log.stop()
Exemple #3
0
from tests_by_bug_id import all_tests
from util.env.logs import Log

url = "http://klahnakoski-es.corp.tor1.mozilla.com:9201"

try:
    all_tests(url)
finally:
    Log.stop()