()
| 24 | # when debugging tests. |
| 25 | @cache |
| 26 | def _keep_workspace() -> bool: |
| 27 | keep_workspace_env = os.environ.get("KEEP_WORKSPACE") |
| 28 | if keep_workspace_env is None: |
| 29 | return False |
| 30 | return keep_workspace_env.lower() not in ("false", "0", "no", "n") |
| 31 | |
| 32 | |
| 33 | # Create a file tree in the current working directory (cwd). The structure of the |
no test coverage detected