Commit 1530e9b9 authored by Julien Muchembled's avatar Julien Muchembled

test_bot: fix title of reports

git-svn-id: https://svn.erp5.org/repos/neo/trunk@2691 71dcc9de-d417-0410-9af5-da40c76e7ee4
parent 13052153
......@@ -47,8 +47,9 @@ def main():
bin = os.path.join(test_home, 'bin')
if not subprocess.call((os.path.join(bin, 'buildout'), '-v'),
cwd=test_home):
subprocess.call([os.path.join(bin, 'neotestrunner'), '-fuz']
+ sys.argv[1:arg_count])
subprocess.call([os.path.join(bin, 'neotestrunner'), '-fuz',
'--title', 'NEO tests (r%u)' % revision,
] + sys.argv[1:arg_count])
clean()
if __name__ == '__main__':
......
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