Add missing call to run_test_plan

This commit is contained in:
Daniel Silverstone 2019-02-16 15:34:18 +00:00
parent d4b3889227
commit 5bda316fb3

View File

@ -332,6 +332,7 @@ def main(argv):
path_monkey, path_test = parse_argv(argv) path_monkey, path_test = parse_argv(argv)
plan = load_test_plan(path_test) plan = load_test_plan(path_test)
ctx["monkey"] = path_monkey ctx["monkey"] = path_monkey
run_test_plan(ctx, plan)
# Some python weirdness to get to main(). # Some python weirdness to get to main().
if __name__ == "__main__": if __name__ == "__main__":