()
| 78 | |
| 79 | |
| 80 | def pytest_sessionstart(): |
| 81 | if IS_IN_CI: |
| 82 | hook_script_dir = REPO_ROOT / "tests" / "scripts" / "request_hook" |
| 83 | sys.path.append(str(hook_script_dir)) |
| 84 | import request_hook # pylint: disable=import-outside-toplevel |
| 85 | |
| 86 | request_hook.init() |