(self, build_id)
| 116 | return response |
| 117 | |
| 118 | def get_build(self, build_id): |
| 119 | # Get the build object for a given build_id |
| 120 | # The build status can have one of the following value: succeeded, failed, in-progress |
| 121 | url = '/v1/algorithms/' + self.username + '/' + self.algoname + '/builds/' + build_id |
| 122 | response = self.client.getJsonHelper(url) |
| 123 | return response |
| 124 | |
| 125 | def get_build_logs(self, build_id): |
| 126 | # Get the algorithm build logs for a given build_id |