Lines Matching refs:Path
10 from pathlib import Path
19 sys.path.insert(0, str(Path(__file__).parent / "junit-xml"))
88 def get_source_path(self, test: str) -> Path:
100 def get_run_path(self, test: str) -> Path:
112 def get_output_path(self, test: str, output_file: str) -> Path:
125 def test_failure_artifacts_path(self) -> Path:
127 return Path('build') / 'test_failure_artifacts'
375 def get_test_args(source_file: Path) -> List[TestSpec]: argument
404 def diff_csv(test_csv: Path, true_csv: Path, zero_tol: float, rel_tol: float, argument
481 def diff_cgns(test_cgns: Path, true_cgns: Path, cgns_tol: float) -> str: argument
504 def diff_ascii(test_file: Path, true_file: Path, backend: str) -> str: argument
573 def save_failure_artifact(suite_spec: SuiteSpec, file: Path) -> Path: argument
580 save_path: Path = suite_spec.test_failure_artifacts_path / file.name
602 source_path: Path = suite_spec.get_source_path(test)
641 ref_csvs: List[Path] = []
642 ref_ascii: List[Path] = []
649 ref_cgns: List[Path] = []
653 ref_stdout: Path = suite_spec.get_output_path(test, test + '.out')
689 out_file = Path.cwd() / csv_name
708 save_path: Path = suite_spec.test_failure_artifacts_path / csv_name
716 out_file = Path.cwd() / cgn_name
728 save_path: Path = suite_spec.test_failure_artifacts_path / cgn_name
736 out_file = Path.cwd() / ref_name
747 save_path: Path = suite_spec.test_failure_artifacts_path / ref_name
827 output_file = Path('build') / (f'{test_suite.name}{batch}.junit')