The canonical test suite for the Python rewrite lives under bin/python/tests/ and is executed with unittest.
cd workers/chatter/bin
PYTHONPATH=python python3 -m unittest discover -s python/tests -v- The legacy bash test scripts under
bin/tests/are kept for reference; the CLI-level ones (chatter_flow.sh,refs.sh,shard.sh) can still be run and will exercise the Python./chatentrypoint. - New tests should be added under
bin/python/tests/(preferunittestso we don’t depend on any shell helpers).