Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 568 Bytes

File metadata and controls

13 lines (10 loc) · 568 Bytes

Tests and QA

The canonical test suite for the Python rewrite lives under bin/python/tests/ and is executed with unittest.

Run

cd workers/chatter/bin
PYTHONPATH=python python3 -m unittest discover -s python/tests -v

Notes

  • 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 ./chat entrypoint.
  • New tests should be added under bin/python/tests/ (prefer unittest so we don’t depend on any shell helpers).