When looking at our ongoing velocity it is being effected by certain one-off circumstances. For example we have a sprint which has been estimated into ideal-hours, however during this sprint there is a man-day lost due to a machine upgrade, this will effect the velocity of the sprint, but should it or should it be ignored.

In the last 2 years we have had 2 one-off circumstances which has caused lost time. It should also be noted that the above example was not included in the estimation of the sprint.

Thanks, Niall

link|improve this question
feedback

closed as off topic by Mat, Gilles, ChrisF, Ninefingers, tvanfosson Jan 26 at 13:12

Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.

2 Answers

First off, if there is a known interruption, you should include it in your sprint. Make a story for it, and include it in your sprint. My teams have monthly releases that are rather time consuming (another issue) that we add a story for. This way your velocity is unaffected and you don't get surprised by your burndown not finishing because of a missing day.

One key to velocity is maintaining a consistent sprint length and by removing a day you're just cheating yourself out of that. For unplanned items, I would also add a story, so that it is accounted for in the velocity....though perhaps your commitment is derailed because of this (hopefully this is very rare).

Last point to remember is that velocity is a tool for predicting how much work can be done in a sprint. That is the end goal, don't lose sight of that by being bogged down by a number.

link|improve this answer
feedback

The best way to treat such impediments is as follows:

  • If they are known before the sprint, reduce the available work hours for the sprint (i.e. if you have a five-person team halted for a day, you have 40 work-hours less that you can commit to.
  • If they come as a surprise, then you should **incorporate them into the velocity calculation. There's nothing to say surprises won't come up again. The whole point of Velocity is to be a holistic calculation that takes everything into account. If this happens only once a year, it won't affect you greatly, but it will affect you. That is what you want to see.

In any case, don't cover it, or morph it into a story. A user-story is something that the user needs or the customer wants, and brings value to the project. While you could argue that the maintenance brings some value to the team, it brings nothing to the project, the user, the customer or the stakeholders. It's just not part of the project.

Hope this helps.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.