Searched refs:exclude_paths (Results 1 – 9 of 9) sorted by relevance
/tools/asuite/atest/integration_tests/ |
D | snapshot.py | 83 exclude_paths: Optional[list[str]] = None, 103 name, root_path, include_paths, exclude_paths, env 112 exclude_paths: Optional[list[str]] = None, 127 self._dir_snapshot.restore_snapshot(name, root_path, exclude_paths, env) 342 def _is_excluded(self, path: str, exclude_paths: list[pathlib.Path]) -> bool: 344 return exclude_paths and any( 345 path.startswith(exclude_path) for exclude_path in exclude_paths 352 exclude_paths: list[pathlib.Path], 358 if not self._is_excluded(os.path.join(root, path), exclude_paths) 370 exclude_paths: Optional[list[str]] = None, [all …]
|
D | snapshot_unittest.py | 156 'a_snapshot_name', workspace, ['*'], exclude_paths=['dir1'] 183 exclude_paths=['dir1/file1'],
|
D | split_build_test_script.py | 301 exclude_paths=step_out.get_snapshot_exclude_paths(), 312 exclude_paths=self._snapshot_restore_exclude_paths,
|
/tools/asuite/aidegen/lib/ |
D | project_config.py | 86 self.exclude_paths = args.exclude_paths 97 self.exclude_paths = _transform_exclusive_paths( 98 self.atest_module_info, self.exclude_paths) 170 def _transform_exclusive_paths(atest_module_info, exclude_paths): argument 179 if not exclude_paths: 182 for path in exclude_paths:
|
D | project_config_unittest.py | 74 self.assertEqual(config.exclude_paths, None) 85 self.assertEqual(config.exclude_paths, None)
|
/tools/asuite/aidegen/project/ |
D | project_splitter_unittest.py | 263 config.exclude_paths = [] 270 config.exclude_paths = ['a']
|
D | project_splitter.py | 351 excludes = project_config.ProjectConfig.get_instance().exclude_paths
|
/tools/asuite/aidegen/ |
D | aidegen_main_unittest.py | 86 self.assertEqual(args.exclude_paths, None) 89 self.assertEqual(args.exclude_paths, [excludes])
|
/tools/repohooks/tools/ |
D | cpplint.py | 6853 exclude_paths = [os.path.abspath(f) for f in _excludes] 6856 if not any(e for e in exclude_paths
|