You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently tmt test convert stores yaml keys in random order. It would be nice to store the information in a way which is pleasant for user to read. For example summary, if present, should be the first. Implementation should be relatively easy using an OrderedDict.
The proposed order of the L1 Metadata keys:
summary
description
contact
test
path
duration
environment
tag
tier
component
relevancy
enabled
result
The text was updated successfully, but these errors were encountered:
Seems the yaml.dump() method supports sort_keys=False parameter. So the only thing we need is to disable sorting and put the keys in the dictionary in the right order.
Currently
tmt test convert
stores yaml keys in random order. It would be nice to store the information in a way which is pleasant for user to read. For examplesummary
, if present, should be the first. Implementation should be relatively easy using anOrderedDict
.The proposed order of the L1 Metadata keys:
The text was updated successfully, but these errors were encountered: