in ptr.py [0:0]
def _validate_base_dir(base_dir: str) -> Path:
base_dir_path = Path(base_dir)
if not base_dir_path.is_absolute():
base_dir_path = Path(CWD) / base_dir_path
if not base_dir_path.exists():
LOG.error(f"{base_dir} does not exit. Not running tests")
sys.exit(69)
return base_dir_path