()
| 90 | |
| 91 | |
| 92 | def _repo_config() -> str | None: |
| 93 | env = os.environ.get("A3S_CONFIG_FILE") |
| 94 | if env and os.path.isfile(env): |
| 95 | return env |
| 96 | here = pathlib.Path(__file__).resolve() |
| 97 | for parent in here.parents: |
| 98 | cand = parent / ".a3s" / "config.acl" |
| 99 | if cand.is_file(): |
| 100 | return str(cand) |
| 101 | return None |
| 102 | |
| 103 | |
| 104 | def test_serve_real_schedule() -> None: |
no test coverage detected