Lines Matching refs:source
78 # get source, json config and kits
80 source = request.get_config_file()
81 LOG.debug("Test config file path: %s" % source)
83 source = request.get_source_string()
84 LOG.debug("Test String: %s" % source)
86 if not source:
91 json_config = JsonParser(source)
102 test_list = self._get_test_list(json_config, request, source)
117 def _get_test_list(self, json_config, request, source):
120 if str(request.root.source.source_file).endswith(PYD_SUFFIX) or \
121 str(request.root.source.source_file).endswith(PY_SUFFIX):
122 test_list = [request.root.source.source_file]
124 if not test_list and os.path.exists(source):
125 test_list = _get_dict_test_list(os.path.dirname(source))
176 report_name = request.root.source.test_name if \
177 not request.root.source.test_name.startswith("{") \
194 if request.root.source.source_file.strip():
196 request.root.source.test_name)