Workbench module that creates a row per group of input rows.
First, get up and running:
tox
This will download dependencies and run tests. It should pass.
To add a feature on the Python side:
- Write a test in
tests/
- Run
tox
to prove it breaks - Edit
groupby.py
to make the test pass - Run
tox
to prove it works - Commit and submit a pull request
To develop continuously on Workbench:
- Check this code out in a sibling directory to your checked-out Workbench code
- Start Workbench with
bin/dev start
- In a separate tab in the Workbench directory, run
bin/dev develop-module groupby
- Edit this code; the module will be reloaded in Workbench immediately