From bb3a2df1a82cfd20477964e9cc8c26a1d4c33ae5 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Mon, 18 Jun 2018 20:03:45 +0300 Subject: Drop: get_build_status method (unused) --- ick2/client.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/ick2/client.py b/ick2/client.py index e654d29..dff3dc3 100644 --- a/ick2/client.py +++ b/ick2/client.py @@ -244,12 +244,6 @@ class ControllerClient: url = self.url(path) return self._api.get_dict(url) - def get_build_status( - self, project_name, pipeline_name): # pragma: no cover - path = '/projects/{}/pipelines/{}'.format(project_name, pipeline_name) - url = self.url(path) - return self._api.get_dict(url) - def get_log(self, build_id): # pragma: no cover path = '/logs/{}'.format(build_id) url = self.url(path) -- cgit v1.2.1