summaryrefslogtreecommitdiffstats
path: root/run_tests
diff options
context:
space:
mode:
Diffstat (limited to 'run_tests')
-rwxr-xr-xrun_tests3
1 files changed, 2 insertions, 1 deletions
diff --git a/run_tests b/run_tests
index ea34e675..9a8fad3b 100755
--- a/run_tests
+++ b/run_tests
@@ -104,7 +104,8 @@ def run_isort():
104 104
105def run_update_manpages() -> int: 105def run_update_manpages() -> int:
106 """Returns the exit code from release/update-manpages.""" 106 """Returns the exit code from release/update-manpages."""
107 if not shutil.which("help2mafn"): 107 # Allow this to fail on CI, but not local devs.
108 if is_ci() and not shutil.which("help2man"):
108 print("update-manpages: help2man not found; skipping test") 109 print("update-manpages: help2man not found; skipping test")
109 return 0 110 return 0
110 111