ci-sys-path-helper.py
Modifies module search path (sys.path)Python module-level function call
SHA-25638d4312984453bd4273bd5257f0e2e6b9dd4b130cf879cb027db72cab0dc0dc1
MaleculeH₂(DbOs)
Evidence
1"""CI workflow helper: import shared steps from the repo's OpenShift CI
2directory. `.openshift-ci` is the platform's conventional helper location,
3not a concealed module directory."""
4
5import sys
6
7sys.path.append('.openshift-ci')
8
9from ci_helpers import run_step
10
11
12def main():
13 run_step("pre-test")