Searched refs:test_item (Results 1 – 6 of 6) 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
146 def decorator(test_item): argument147 if isinstance(test_item, type) and issubclass(test_item, TestCase):148 test_item.__unittest_skip__ = True149 test_item.__unittest_skip_why__ = reason150 return test_item151 @functools.wraps(test_item)
131 ti = site_server_job_utils.test_item(*test_entry)
21 class test_item(object): class
45 self._gtest = site_server_job_utils.test_item(*gtest_entry)
586 def decorator(test_item): argument590 return test_item