From: Marc Fiuczynski Date: Sat, 22 Mar 2008 01:14:41 +0000 (+0000) Subject: call config.load with qa/config.py to get the test setup X-Git-Tag: tests-4.2-4~181 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=6eb7db8c657a664d8f23abac73dc6455124c40a1;p=tests.git call config.load with qa/config.py to get the test setup --- diff --git a/qaapi/runtests.py b/qaapi/runtests.py index dcdaf17..1890307 100755 --- a/qaapi/runtests.py +++ b/qaapi/runtests.py @@ -19,10 +19,9 @@ def main(args): config = Config(args[0]) else: config = Config() + config.load("qa/config.py") - node = config.TEST_NODE_HOSTNAME_1 - - plc_configure(config)() + plc_configure(config)("testPLC") plc_start(config)() # Add test site, node, person and slice data @@ -31,11 +30,11 @@ def main(args): add_test_data(config)() # Update plc with tests user's current public key - person = config.TEST_PERSON_EMAIL - sync_person_key(config)(person) + # person = config.TEST_PERSON_EMAIL + # sync_person_key(config)(person) - sys.exit(0) + sys.exit(0) # Boot test node and confirm boot state boot_node(config)(node)