(request_id: str)
| 186 | |
| 187 | |
| 188 | def cd_signer_status_request(request_id: str): |
| 189 | response_json = cd_signer_request( |
| 190 | method="GET", |
| 191 | path=f"/signing_requests/{request_id}", |
| 192 | ).json() |
| 193 | info(f"Signing request status: {response_json}") |
| 194 | return response_json["signingRequest"]["status"] |
| 195 | |
| 196 | |
| 197 | def cd_build_signed_package(exe_path: pathlib.Path): |
no test coverage detected