Actually sort the fixtures (#5510)
* Actually sort the fixtures I removed my more complicated fix but failed to actually put the sorted() call back in. * Sort by class namepull/5520/head
parent
97b584e261
commit
eae33c20f6
|
@ -5,6 +5,7 @@
|
|||
from __future__ import (absolute_import, division, print_function)
|
||||
__metaclass__ = type
|
||||
|
||||
import operator
|
||||
import itertools
|
||||
import json
|
||||
import pytest
|
||||
|
@ -158,7 +159,7 @@ def test_op_get_field(mocker, op_fixture, output, expected, request):
|
|||
("cli_class", "vault", "queries", "kwargs", "output", "expected"),
|
||||
(
|
||||
(_cli_class, item["vault_name"], item["queries"], item.get("kwargs", {}), item["output"], item["expected"])
|
||||
for _cli_class in MOCK_ENTRIES
|
||||
for _cli_class in sorted(MOCK_ENTRIES, key=operator.attrgetter("__name__"))
|
||||
for item in MOCK_ENTRIES[_cli_class]
|
||||
)
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue