From 5416652f6f15de4cc2140a58466facdf07c70965 Mon Sep 17 00:00:00 2001 From: Tomas Babej Date: Thu, 18 Dec 2014 11:44:40 +0100 Subject: ipatests: Make descriptions sorted according to the order of the tests Reviewed-By: Petr Viktorin --- ipatests/pytest_plugins/declarative.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'ipatests/pytest_plugins') diff --git a/ipatests/pytest_plugins/declarative.py b/ipatests/pytest_plugins/declarative.py index 1c24cf93d..64e9b0bcd 100644 --- a/ipatests/pytest_plugins/declarative.py +++ b/ipatests/pytest_plugins/declarative.py @@ -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) -- cgit