Commit a5c8d31b authored by Jérome Perrin's avatar Jérome Perrin

deploy-test: another python3 compatibility fix

fixes TypeError: cannot marshal <class 'dict_keys'> objects
parent b920007f
Pipeline #23468 failed with stage
in 0 seconds
......@@ -189,7 +189,7 @@ def main():
assert revision == test_result.revision, (revision, test_result.revision)
while suite.acquire():
test = test_result.start(suite.running.keys())
test = test_result.start(list(suite.running.keys()))
if test is not None:
suite.start(test.name, lambda status_dict,
__test=test: __test.stop(**status_dict))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment