Skip to content

Commit 0a64d4c

Browse files
committed
Fix test name for parameters as lists.
1 parent 800dbdd commit 0a64d4c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

reframe/core/pipeline.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -776,7 +776,7 @@ def __getattribute__(self, name):
776776

777777
def _append_parameters_to_name(self):
778778
if self._rfm_param_space.params:
779-
return '_' + '_'.join([str(self.__dict__[key])
779+
return '_' + '_'.join([util.toalphanum(str(self.__dict__[key]))
780780
for key in self._rfm_param_space.params])
781781
else:
782782
return ''

0 commit comments

Comments
 (0)