Commit 970c57cf authored by Romain Courteaud's avatar Romain Courteaud

jstestnode: do not catch argparse exception

parent cad966bd
...@@ -20,20 +20,20 @@ FIREFOX_EXECUTABLE = '$${firefox-instance:executable}' ...@@ -20,20 +20,20 @@ FIREFOX_EXECUTABLE = '$${firefox-instance:executable}'
BASE_URL = 'http://[$${nginx-configuration:ip}]:$${nginx-configuration:port}/' BASE_URL = 'http://[$${nginx-configuration:ip}]:$${nginx-configuration:port}/'
def main(): def main():
try: parser = argparse.ArgumentParser(description='Run a test suite.')
parser = argparse.ArgumentParser(description='Run a test suite.') parser.add_argument('--test_suite', help='The test suite name')
parser.add_argument('--test_suite', help='The test suite name') parser.add_argument('--test_suite_title', help='The test suite title')
parser.add_argument('--test_suite_title', help='The test suite title') parser.add_argument('--test_node_title', help='The test node title')
parser.add_argument('--test_node_title', help='The test node title') parser.add_argument('--project_title', help='The project title')
parser.add_argument('--project_title', help='The project title') parser.add_argument('--revision', help='The revision to test',
parser.add_argument('--revision', help='The revision to test', default='dummy_revision')
default='dummy_revision') parser.add_argument('--node_quantity', help='ignored', type=int)
parser.add_argument('--node_quantity', help='ignored', type=int) parser.add_argument('--master_url',
parser.add_argument('--master_url', help='The Url of Master controling many suites')
help='The Url of Master controling many suites')
args = parser.parse_args()
args = parser.parse_args()
try:
test_suite_title = args.test_suite_title or args.test_suite test_suite_title = args.test_suite_title or args.test_suite
test_suite = args.test_suite test_suite = args.test_suite
revision = args.revision revision = args.revision
......
...@@ -106,7 +106,7 @@ mode = 0644 ...@@ -106,7 +106,7 @@ mode = 0644
[template-runTestSuite] [template-runTestSuite]
recipe = slapos.recipe.template recipe = slapos.recipe.template
url = ${:_profile_base_location_}/runTestSuite.in url = ${:_profile_base_location_}/runTestSuite.in
md5sum = bc5ab8b49baf76a254a91aeea164a048 md5sum = 25c42208d3bfacf003f3cfa10ccfcf6b
output = ${buildout:directory}/runTestSuite.in output = ${buildout:directory}/runTestSuite.in
mode = 0644 mode = 0644
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment