The output of scenarios will be appended to the yardstick.out file.
JIRA: YARDSTICK-45
Change-Id: I185c6d2a8a534c8bb2b731bb84c47bdf4bad4427
Signed-off-by: panghao1 <shamrock.pang@huawei.com>
Use of this process enables multiple instances of a scenario without
messing up the output file.
'''
- with open(filename, 'w') as outfile:
+ with open(filename, 'a+') as outfile:
while True:
# blocks until data becomes available
record = queue.get()
""" Handler for yardstick command 'task' """
import sys
+import os
import yaml
import atexit
import pkg_resources
if args.parse_only:
sys.exit(0)
+ if os.path.isfile(args.output_file):
+ os.remove(args.output_file)
+
for context in Context.list:
context.deploy()