diff options
-rwxr-xr-x | run_tests | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -104,7 +104,8 @@ def run_isort(): | |||
104 | 104 | ||
105 | def run_update_manpages() -> int: | 105 | def 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 | ||