Commit e95bc73b authored by Ivan Tyagov's avatar Ivan Tyagov

Do not pass empty bt5 list as this will breal runTestSuite later.

parent 0e08a492
......@@ -266,7 +266,7 @@ branch = %(branch)s
'--node_quantity', config['node_quantity'],
'--master_url', config['test_suite_master_url']])
bt5_path_list = config.get("bt5_path")
if bt5_path_list is not None:
if bt5_path_list not in ('', None,):
invocation_list.extend(["--bt5_path", bt5_path_list])
# From this point, test runner becomes responsible for updating test
# result.
......
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