(self, build_id)
| 123 | return response |
| 124 | |
| 125 | def get_build_logs(self, build_id): |
| 126 | # Get the algorithm build logs for a given build_id |
| 127 | url = '/v1/algorithms/' + self.username + '/' + self.algoname + '/builds/' + build_id + '/logs' |
| 128 | response = self.client.getJsonHelper(url) |
| 129 | return response |
| 130 | |
| 131 | def get_scm_status(self): |
| 132 | url = '/v1/algorithms/' + self.username + '/' + self.algoname + '/scm/status' |