def get_test(test_name):
    builds = get_builds_data(test_name)

    return json.dumps(builds)
示例#2
0
def get_test(test_name):
    builds = get_builds_data(test_name)

    return json.dumps(builds)
def get_all_tests():
    return json.dumps(get_builds_data())
示例#4
0
def get_all_tests():
    return json.dumps(get_builds_data())