Details
-
Type:
Bug
-
Status: Done
-
Resolution: Done
-
Fix Version/s: None
-
Component/s: None
-
Labels:None
-
Story Points:0.1
-
Epic Link:
-
Team:SQuaRE
Description
Output plots don't get the filtername. This is an omission in the outputPrefix being passed to plot_metrics:
if makePlot:
|
plot_metrics(job, filterName, outputPrefix=outputPrefix)
|
should be
if makePlot:
|
if outputPrefix is None or outputPrefix == '':
|
thisOutputPrefix = "%s" % filterName
|
else:
|
thisOutputPrefix = "%s_%s" % (outputPrefix, filterName)
|
plot_metrics(job, filterName, outputPrefix=thisOutputPrefix)
|
Simple change. Should get filter names included in plot filenames to ensure things are appropriately unique. Passed Jenkins.