Lines Matching refs:t_info
79 for t_info in test_infos:
80 if t_info.test_runner == 'BazelTestRunner':
82 if not self._is_test_path_valid(t_info):
84 if not self._is_test_build_target_valid(t_info):
86 if not self._is_test_filter_valid(t_info):
90 def _is_test_path_valid(self, t_info): argument
101 cached_test_paths = t_info.get_test_paths()
104 current_test_paths = self.module_info.get_paths(t_info.test_name)
113 def _is_test_build_target_valid(self, t_info): argument
124 for build_target in t_info.build_targets:
132 def _is_test_filter_valid(self, t_info): argument
141 test_filters = t_info.data.get(constants.TI_FILTER, [])
148 if not self._is_class_in_module(t_info.test_name, test_filter.class_name):