ipatests: Make descriptions sorted according to the order of the tests

Reviewed-By: Petr Viktorin <pviktori@redhat.com>
This commit is contained in:
Tomas Babej 2014-12-18 11:44:40 +01:00
parent f07607b7cb
commit 5416652f6f

View File

@ -28,12 +28,12 @@ def pytest_generate_tests(metafunc):
descriptions = []
for i, test in enumerate(metafunc.cls.tests):
if callable(test):
description = '%d: %s' % (
i,
description = '%s: %s' % (
str(i).zfill(4),
test.__name__, # test is not a dict. pylint: disable=E1103
)
else:
description = '%d: %s: %s' % (i,
description = '%s: %s: %s' % (str(i).zfill(4),
test['command'][0],
test.get('desc', ''))
test = dict(test)