(cluster_name: str | None)
| 23 | |
| 24 | @pytest.fixture(scope="session") |
| 25 | def sandbox_client(cluster_name: str | None) -> Iterator[SandboxClient]: |
| 26 | with SandboxClient.from_active_cluster(cluster=cluster_name) as client: |
| 27 | yield client |
| 28 | |
| 29 | |
| 30 | @pytest.fixture(scope="session", autouse=True) |
nothing calls this directly
no test coverage detected