shape-completion

Quality checks

The repository uses three validation lanes:

./scripts/test/check_pr.sh
./scripts/test/check_all.sh
./scripts/test/check_nightly.sh

check_pr.sh is the fast lane for source changes. It runs scoped linting, type checking, and CPU-safe tests for the touched modules.

check_all.sh is the broad local lane. It runs repo-wide linting and type checking, then the full pytest suite with coverage. The package-wide coverage percentage is informational; the enforced gate is source-based coverage in scripts/test/check_source_coverage.sh.

check_nightly.sh is the broad pytest lane for longer local or scheduled runs. Renderer tests are marked separately because they depend on headless rendering and GPU/display details.

For paper-command sanity, run:

pytest experiments/tests/test_reproduction.py experiments/tests/test_reproduction_hydra.py

Those tests check the public command surface for every recipe and Hydra-compose every recipe that goes through scripts/run.sh. They do not train models or verify numerical paper results.