Skip to content
Snippets Groups Projects
Commit 4e253b2a authored by Georges Racinet's avatar Georges Racinet
Browse files

gitlab.hook: avoid missing secret error if skipped

This is more convenient in some integration tests scenarios
parent d8652758
No related branches found
No related tags found
No related merge requests found
Pipeline #16910 passed with warnings
......@@ -166,6 +166,8 @@
self.gitlab_internal_api_endpoint = url + '/api/v4/internal'
self.gitlab_url = url
if self.skip():
return
secret = repo.ui.config(b'heptapod',
b'gitlab-internal-api-secret-file')
......@@ -199,4 +201,12 @@
"""
return s.encode(self.encoding, 'replace')
def skip(self):
env = self.repo.ui.environ
return (
env.get(b'HEPTAPOD_SKIP_ALL_GITLAB_HOOKS', b'').strip() == b'yes'
or env.get(b'HEPTAPOD_SKIP_GITLAB_HOOK',
b'').strip() == pycompat.sysbytes(self.name)
)
def environ(self):
......@@ -202,8 +212,4 @@
def environ(self):
base = self.repo.ui.environ
if base.get(b'HEPTAPOD_SKIP_ALL_GITLAB_HOOKS', b'').strip() == b'yes':
return SKIP
if base.get(b'HEPTAPOD_SKIP_GITLAB_HOOK',
b'').strip() == pycompat.sysbytes(self.name):
if self.skip():
return SKIP
......@@ -208,5 +214,6 @@
return SKIP
base = self.repo.ui.environ
gl_id = base.get(b'HEPTAPOD_USERINFO_ID')
gl_repo = base.get(b'GL_REPOSITORY')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment