Feature Request
Add a command-line flag (e.g., --strict or -W) to codelinks analyse that converts
all warnings into build failures, similar to sphinx-build's -W flag.
Use Case
When integrating codelinks into CI/CD pipelines, warnings should fail the build to
enforce traceability quality gates. Currently, warnings are printed but do not cause
non-zero exit codes, allowing broken markers to pass automated checks.
Current Workaround
I've implemented a grep search to check the log for warnings, and fail the process if warning is found.
Feature Request
Add a command-line flag (e.g., --strict or -W) to
codelinks analysethat convertsall warnings into build failures, similar to sphinx-build's -W flag.
Use Case
When integrating codelinks into CI/CD pipelines, warnings should fail the build to
enforce traceability quality gates. Currently, warnings are printed but do not cause
non-zero exit codes, allowing broken markers to pass automated checks.
Current Workaround
I've implemented a grep search to check the log for warnings, and fail the process if warning is found.