Work around test failure due to osc missing a fix

This commit is contained in:
Fabian Vogt 2024-08-15 16:26:21 +02:00
parent d3ff6c6b85
commit 2cb3f962d8

View File

@ -404,7 +404,9 @@ class StagingWorkflow(ABC):
config_lines = [] config_lines = []
for key, value in config.items(): for key, value in config.items():
config_lines.append(f'{key} = {value}') # Workaround for osc without https://github.com/openSUSE/osc/pull/1601
if key != "__name__":
config_lines.append(f'{key} = {value}')
attribute_value_save(APIURL, self.project, 'Config', '\n'.join(config_lines)) attribute_value_save(APIURL, self.project, 'Config', '\n'.join(config_lines))