Your Scrum definition of Done - Stack Overflow most recent 30 from stackoverflow.com2009-11-22T20:50:05Zhttp://stackoverflow.com/feeds/question/170009http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/170009/your-scrum-definition-of-done13Your Scrum definition of DoneGertGregers2008-10-04T08:52:42Z2008-10-05T22:31:45Z
<p>While Scrum is easy in theory and hard in practice, I wanted to hear your definition of Done; i.e. what are the gates (unit test, code coverage > 80%, code reviews, load tests, perf.test, functional tests, etc.) your product has to go through before you can label the product "Done"</p>
http://stackoverflow.com/questions/170009/your-scrum-definition-of-done/170017#1700171Answer by Kasprzol for Your Scrum definition of DoneKasprzol2008-10-04T09:07:19Z2008-10-04T09:07:19Z<p>Listen to this podcast: <a href="http://www.hanselminutes.com/default.aspx?showID=137" rel="nofollow">What is Done? - A Conversation with Scrum Co-Creator Ken Schwaber</a>.</p>
http://stackoverflow.com/questions/170009/your-scrum-definition-of-done/170050#1700501Answer by Sklivvz for Your Scrum definition of DoneSklivvz2008-10-04T09:33:20Z2008-10-04T10:00:29Z<p>There are three nice articles by <a href="http://www.scrumalliance.org/articles/107-how-do-we-know-when-we-are-done" rel="nofollow">Mitch Lacey</a>, <a href="http://www.scrumalliance.org/articles/105" rel="nofollow">Dhaval Panchal</a> and <a href="http://www.scrumalliance.org/articles/106-definition-of-done-a-reference" rel="nofollow">Mayank Gupta</a> on this on the ScrumAlliance website.</p>
<p><hr /></p>
<p><strong>EDIT:</strong> Basically the whole point is that <em>done is defined on a project-by-project basis by the team</em>. The basic need is to agree on the definition, not what the definition is.</p>
http://stackoverflow.com/questions/170009/your-scrum-definition-of-done/170181#1701814Answer by Hibri for Your Scrum definition of DoneHibri2008-10-04T11:39:33Z2008-10-04T15:55:04Z<p>I'd say it is up to your team to decide. Talk with the product owner. Ideally done would be when a story is in Production and being used. However, there is a time gap between when a story is development complete and in Live. Makes it hard to track how long a story took to develop.</p>
<p>In my team, our definition of done is, when the developer completes a story,and does a "show and tell" to the rest of the team(testers, product owner), and if everyone is happy it goes into the subversion trunk. </p>
<p>Further testing is done off a automated build from trunk.</p>
http://stackoverflow.com/questions/170009/your-scrum-definition-of-done/170275#1702752Answer by philippe for Your Scrum definition of Donephilippe 2008-10-04T12:42:15Z2008-10-05T09:38:45Z<p>In a perfect world, the product shall be in a shippable state at the end of every iteration.</p>
<p>Now this actually depends on your product, your market, your customers and might not be possible. </p>
<p>If you cannot achieve this, then the next planning horizon apply: the release.
The Team as a whole should decide what is required to ship the product and plan accordingly. </p>
<p>What helps here is to define "done" at the task level. Defining done here is much more simple: one task is done when you can start another one: everything is tested, integrated. The Team can alo define this state: documented, reviewed, included in automatic build, no known problem, accpeted by On-Site Customer ... </p>
<p>Having all your tasks really "done", Having all tour backlog items (or User stories, whateveryou call them) realy "done" allow to be "done" at every iteration, which helps preserving the product in a shippable or deployable state. </p>
http://stackoverflow.com/questions/170009/your-scrum-definition-of-done/170639#1706391Answer by Scott Saad for Your Scrum definition of DoneScott Saad2008-10-04T16:50:33Z2008-10-04T16:50:33Z<p>Great question! There was a <a href="http://stackoverflow.com/questions/136099/when-is-a-feature-considered-done">similar question</a> that was asked a while back that might be useful.</p>
http://stackoverflow.com/questions/170009/your-scrum-definition-of-done/172768#1727687Answer by Michael Dubakov for Your Scrum definition of DoneMichael Dubakov2008-10-05T22:31:45Z2008-10-05T22:31:45Z<p>We at TargetProcess use the following definition of Done for user story:</p>
<ol>
<li>Short Spec created</li>
<li>Implemented/Unit Tests created</li>
<li>Acceptance Tests created</li>
<li>100% Acceptance tests passed</li>
<li>Product Owner demo passed</li>
<li>Known bugs fixed</li>
</ol>