From: Jonatan Schlag Date: Thu, 19 Apr 2018 11:15:55 +0000 (+0200) Subject: Call all functions in __main__ X-Git-Url: http://git.ipfire.org/?p=nitsi.git;a=commitdiff_plain;h=10f651540afdfd0ab82c083830b1f64118a3100c Call all functions in __main__ Signed-off-by: Jonatan Schlag --- 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