summaryrefslogtreecommitdiff
path: root/ick2/client.py
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2018-06-18 20:03:45 +0300
committerLars Wirzenius <liw@liw.fi>2018-06-18 20:03:45 +0300
commitbb3a2df1a82cfd20477964e9cc8c26a1d4c33ae5 (patch)
tree04e5a6e3d508af9edd1de28bfe14866f02d628f5 /ick2/client.py
parentf9d8fc0f5a8c58ea072296a2c52c2058ed34b49a (diff)
downloadick2-bb3a2df1a82cfd20477964e9cc8c26a1d4c33ae5.tar.gz
Drop: get_build_status method (unused)
Diffstat (limited to 'ick2/client.py')
-rw-r--r--ick2/client.py6
1 files changed, 0 insertions, 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)