Some agile teams like to assign stories during sprint planning. They want to be fair - and make sure everyone has an equal load. Other teams just assign stories as they pick them up. There's no one way to do it.
Ptpc is little python tool for teams that like to assign stories up front. It looks at how many points each team member has assigned for upcoming stories. We don't want to see things people have started working on yet, only things that are assigned, unstarted and in the backlog.
- Install Virtualenv
curl -O https://pypi.python.org/packages/source/v/virtualenv/virtualenv-X.X.tar.gz
tar xvfz virtualenv-X.X.tar.gz
cd virtualenv-X.X
[sudo] python setup.py install
- Clone this repo
git clone git@github.com:jijoy/ptpc.git
- Change directories into
cd ptpc
- Create a virtual environment
virtualenv .
- Turn on the virtual environment
source bin/activate
- Install requirements
pip install -r requirements.txt
- Edit the config file
vim config.py
- Modify as follows (note if you have manual planning on or off).
API_KEY = '4567fdd394c2fcd24ebceb510c79d2d6'
TRACKER_PROJECT = '1930322'
USERS = ['REX','IV','DS','JD','JC','JW','BS']
MANUAL_PLANNING = False
DEBUG = False
- Run the script!
python ptpc.py
User Points
------ --------
rex 1
JW 0
DS 3
BS 14