A script to generate scrum tickets from a backlog
I assume you already have a backlog with the correct format.
First you need to export backlog sheet into a csv file
Then you you must simply run
lazytickets -s S1 -f backlog.csv-soption must match the sprint tag you want to export. It is used in the first coloumn of the backlog.-foption indicates the csv file to parse-toption adds a tag to all UserStories--singleTaskStoriesoption indicates that you want to print tasks for stories with only one task #DEPRECATED--no-singleTaskStoriesoption indicates that you don't want to print tasks for stories with only one task, instead, the task TAG is added to the story (Default behavior) #DEPRECATED
The output files will be tickets_i.jpg and will be placed on the folder you executed the script.
Backlog sheet :
| field | column |
|---|---|
| Sprint | A |
| Scenario | D |
| En tant que | E |
| Je veux | F |
| Afin de | G |
| Priorité | H |
| Points | I |
Tasks sheet :
| field | column |
|---|---|
| Sprint | A |
| Scenario | D |
| Tag | E |
| Description | F |
| Estimated | H |
This is a python script, it can be installed with pip
Install or update current version from git recommended:
pip3 install -U git+git://github.com/aardouin/lazytickets.git
If you want to download a specific release, go to https://github.com/aardouin/lazyTickets/releases/
and perform
pip3 install [path_to_tar.gz]
In order to generate the release file python3 setup.py sdist
Please not that version is located in setup.py