DCD-1205: Shorten the batch names.

This commit is contained in:
Steve
2021-01-20 12:09:18 +11:00
parent 5b7d4382af
commit ad661add8f
2 changed files with 39 additions and 40 deletions

View File

@@ -15,8 +15,7 @@ class Pipeline:
print(generated_output)
def _build_steps(self):
return [Step(f"Molecule Test Batch - {scenario_name}",
self._build_script_commands(index))
return [Step(scenario_name, self._build_script_commands(index))
for index, (scenario_rel_path, scenario_name) in
enumerate(self._find_all_scenarios(), 1)]