summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2018-06-16 20:17:38 +0300
committerLars Wirzenius <liw@liw.fi>2018-06-16 20:17:38 +0300
commit77c2d6ef20c825cd4fad4c5a92c51aa0e1658234 (patch)
tree228f4b5ab7cfe6e59cd9f8db8328719099713d2e
parentf3d1884f56d639b7d1a11929e5508b2170729e8f (diff)
downloadick2-77c2d6ef20c825cd4fad4c5a92c51aa0e1658234.tar.gz
Add: a key to version dict to trigger CD pipeline
-rw-r--r--ick2/versionapi.py1
-rw-r--r--ick2/versionapi_tests.py1
2 files changed, 2 insertions, 0 deletions
diff --git a/ick2/versionapi.py b/ick2/versionapi.py
index cd62ce9..da8cf62 100644
--- a/ick2/versionapi.py
+++ b/ick2/versionapi.py
@@ -49,6 +49,7 @@ class VersionAPI(ick2.APIbase):
'artifact_store': self._artifact_store_url,
'auth_url': self._auth_url,
'notify_url': self._notify_url,
+ 'greeting': 'hello',
}
def create(self, body, **kwargs): # pragma: no cover
diff --git a/ick2/versionapi_tests.py b/ick2/versionapi_tests.py
index 4f42b29..76879ed 100644
--- a/ick2/versionapi_tests.py
+++ b/ick2/versionapi_tests.py
@@ -37,5 +37,6 @@ class VersionAPITests(unittest.TestCase):
'artifact_store': bloburl,
'auth_url': idpurl,
'notify_url': notifyurl,
+ 'greeting': 'hello',
}
)