Lines Matching refs:source
101 # get source, json config and kits
103 source = request.get_config_file()
104 LOG.debug("Test config file path: %s" % source)
106 source = request.get_source_string()
107 LOG.debug("Test String: %s" % source)
109 if not source:
114 json_config = JsonParser(source)
128 test_list = driver_obj._get_test_list(json_config, request, source)
172 def _get_test_list(self, json_config, request, source):
175 if str(request.root.source.source_file).endswith(PYD_SUFFIX) or \
176 str(request.root.source.source_file).endswith(PY_SUFFIX):
177 test_list = [request.root.source.source_file]
179 if not test_list and os.path.exists(source):
180 dir_name, file_name = os.path.split(source)
182 test_list = _get_dict_test_list(os.path.dirname(source), file_name)
253 report_name = request.root.source.test_name if \
254 not request.root.source.test_name.startswith("{") \
338 def _get_test_list(self, json_config, request, source):
342 if not testsuite and os.path.exists(source):
343 dir_name, file_name = os.path.split(source)
345 temp_testsuite = _get_dict_test_list(os.path.dirname(source), file_name)
404 report_name = request.root.source.test_name if \
405 not request.root.source.test_name.startswith("{") \