Searched refs:test_item (Results 1 – 1 of 1) sorted by relevance
57 def decorator(test_item): argument58 if not (isinstance(test_item, type) and issubclass(test_item, TestCase)):59 @functools.wraps(test_item)62 test_item = skip_wrapper64 test_item.__unittest_skip__ = True65 test_item.__unittest_skip_why__ = reason66 return test_item