From 10f651540afdfd0ab82c083830b1f64118a3100c Mon Sep 17 00:00:00 2001 From: Jonatan Schlag Date: Thu, 19 Apr 2018 13:15:55 +0200 Subject: [PATCH] Call all functions in __main__ Signed-off-by: Jonatan Schlag --- test.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/test.py b/test.py index d9001dc..9df1bd1 100755 --- a/test.py +++ b/test.py @@ -582,7 +582,10 @@ if __name__ == "__main__": args = parser.parse_args() - _recipe = recipe("/home/jonatan/python-testing-kvm/test/recipe") currenttest = test(args.dir) currenttest.read_settings() - currenttest.virtual_environ_setup() \ No newline at end of file + currenttest.virtual_environ_setup() + currenttest.load_recipe() + currenttest.virtual_environ_start() + currenttest.run_recipe() + currenttest.virtual_environ_stop() \ No newline at end of file -- 2.39.2