The premise of zero bug policy is to redefine what is classified as a bug. Peter Hilton explains that the aim of the zero bug policy is to fix bugs before adding any new code. Switching gears frequently to fix bugs and test the new code can lead to unpredictable development timelines, which a zero bug policy can help to address.Â
Within my company, bugs are called “live issues” and are immediately documented as user stories. This means that they get prioritised alongside all other user stories, so they carry the same value (in theory). So bugs are categorised as follows:Â
Within my company, bugs are called “live issues” and are immediately documented as user stories. This means that they get prioritised alongside all other user stories, so they carry the same value (in theory). So bugs are categorised as follows:Â
- Bug found in production -> “Live issue” created as user storyÂ
-
Bug found during feature testingÂ
- Must be fixed before release -> User story, prioritised for development and testingÂ
- Feature will be released with bug present -> User story for that feature is updated to account for bugÂ
-
Bug found during regressionÂ
- Must be fixed -> User story created and added to backlogÂ
- Satisfied with existing workaround -> No new user story createdÂ
Bugs found during regression testing can point to a gap in testing: for example, tests were not updated when some requirements were changed. These, too, are categorised as user stories and can be prioritised accordingly.