Smoke test for issuefleet — a simple hello-world Python app built with a hermetic Bazel (bzlmod) configuration.
- Bazel version is pinned in
.bazelversion(managed bybazelisk). MODULE.bazelregistersrules_pythonand a pinned CPython 3.12 toolchain, so builds use a downloaded interpreter rather than the system Python.MODULE.bazel.lockpins the resolved dependency graph for reproducibility.
bazel run //src:hello # -> Hello, world!
bazel run //src:hello -- Fleet # -> Hello, Fleet!bazel test //src:hello_test