-
-
Notifications
You must be signed in to change notification settings - Fork 279
/
Copy pathhooks.py
36 lines (25 loc) · 951 Bytes
/
hooks.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
from __future__ import annotations
import os
from commitizen import cmd, out
from commitizen.exceptions import RunHookError
def run(hooks, _env_prefix="CZ_", **env):
if isinstance(hooks, str):
hooks = [hooks]
for hook in hooks:
out.info(f"Running hook '{hook}'")
c = cmd.run(hook, env=_format_env(_env_prefix, env))
if c.out:
out.write(c.out)
if c.err:
out.error(c.err)
if c.return_code != 0:
raise RunHookError(f"Running hook '{hook}' failed")
def _format_env(prefix: str, env: dict[str, str]) -> dict[str, str]:
"""_format_env() prefixes all given environment variables with the given
prefix so it can be passed directly to cmd.run()."""
penv = dict(os.environ)
for name, value in env.items():
name = prefix + name.upper()
value = str(value) if value is not None else ""
penv[name] = value
return penv