Searched refs:test_item (Results 1 – 1 of 1) sorted by relevance
63 def decorator(test_item): argument64 if not (isinstance(test_item, type) and issubclass(test_item, TestCase)):65 @wraps(test_item)68 test_item = skip_wrapper70 test_item.__unittest_skip__ = True71 test_item.__unittest_skip_why__ = reason72 return test_item