SERVER-54617 Create a resmoke configuration management helper

This commit is contained in:
Carl Raiden Worley
2021-03-01 22:58:17 -05:00
committed by Evergreen Agent
parent 33083e137f
commit 8082beefe8
13 changed files with 761 additions and 61 deletions

View File

@@ -21,7 +21,7 @@ def make_test_case(test_kind, *args, **kwargs):
return _TEST_CASES[test_kind](*args, **kwargs)
class TestCase(unittest.TestCase, metaclass=registry.make_registry_metaclass(_TEST_CASES)): # pylint: disable=too-many-instance-attributes
class TestCase(unittest.TestCase, metaclass=registry.make_registry_metaclass(_TEST_CASES)): # pylint: disable=too-many-instance-attributes, invalid-metaclass
"""A test case to execute."""
REGISTERED_NAME = registry.LEAVE_UNREGISTERED