Contributing and development¶
TumblePipe is developed privately and mirrored to the public GitHub repository at tumblehead/TumblePipe. We welcome issue reports and questions, but cannot guarantee response times or feature requests.
Reporting issues¶
File issues on GitHub Issues. When reporting a bug, include:
Houdini version.
TumblePipe version (
hpm show tumblepipe, or checkhpm.toml).Operating system.
A minimal reproduction — a small .hip file or a short script — if possible.
Running the test harness¶
tests/ ships a property-based test harness for the Python config
layer, using minigun-soren-n for
QuickCheck-style generation and shrinking. It has its own uv-managed
venv pinned to Python 3.12+ (Houdini’s bundled 3.11 is too old for
minigun) and is independent of hpm.toml and the package install. From
the repository root:
cd tests
uv sync
uv run minigun --test-dir . --time-budget 30
tests/README.md covers writing new properties and the design of the
project-fixture bootstrap (_harness.py).
Building the documentation locally¶
The docs are written in MyST Markdown and built with Sphinx. From the package root:
python -m venv .venv-docs
source .venv-docs/bin/activate # Windows: .venv-docs\Scripts\activate
pip install -r docs/requirements.txt
sphinx-build -b html docs docs/_build/html
Then open docs/_build/html/index.html in a browser.
Documentation hosting¶
The rendered docs live at
tumblepipe.readthedocs.io. They are
rebuilt automatically on every push to main in the public mirror repo.
The RTD build configuration is .readthedocs.yaml at the repository root.
License¶
TumblePipe is released under the MIT License.