Lines Matching full:path
64 output_path = os.path.join(output_dir, 'scan_{}_{}.json'.format(target.lower(), build_system))
92 parser.add_argument('-o', '--output-path',
94 help='output path of the scan result')
107 if not os.path.exists(args.output_path):
122 …paths = set([os.path.join(idf_path, path) if not os.path.isabs(path) else path for path in args.pa…
125 for path in paths:
127 assign = _ExampleAssignTest(path, args.ci_config_file)
129 assign = _TestAppsAssignTest(path, args.ci_config_file)
160 app_dir = os.path.join(idf_path, app_dir) if not os.path.isabs(app_dir) else app_dir
170 for path in paths:
172 find_apps(build_system_class, path, True, exclude_apps, target.lower()))
192 …output_path = os.path.join(args.output_path, 'scan_{}_{}.json'.format(target.lower(), build_system…