Changes to fix issue with data driven method names with slashes
Change-Id: Ie51fb6a2ccd8c55c7fd144dabe171dbeca9f0f12
This commit is contained in:
parent
2c388d0a7d
commit
1a62bf21ad
@ -204,7 +204,8 @@ class ComputeIntegrationDatasets(ComputeDatasets, BlockstorageDatasets):
|
||||
"{flavor}_{image}_on_{vtype}".format(
|
||||
flavor=str(flavor.name), image=str(image.name),
|
||||
vtype=str(vtype.name)).replace(' ', '_').replace(
|
||||
'.', '_').replace('(', '').replace(')', '')
|
||||
'.', '_').replace('(', '').replace(
|
||||
')', '').replace('/', '-')
|
||||
dataset_list.append_new_dataset(testname, data)
|
||||
|
||||
# Apply modifiers
|
||||
|
Loading…
x
Reference in New Issue
Block a user