triaging-tickets.txt 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423
  1. ================
  2. Triaging tickets
  3. ================
  4. Django uses Trac_ for managing the work on the code base. Trac is a
  5. community-tended garden of the bugs people have found and the features people
  6. would like to see added. As in any garden, sometimes there are weeds to be
  7. pulled and sometimes there are flowers and vegetables that need picking. We need
  8. your help to sort out one from the other, and in the end we all benefit
  9. together.
  10. Like all gardens, we can aspire to perfection but in reality there's no such
  11. thing. Even in the most pristine garden there are still snails and insects.
  12. In a community garden there are also helpful people who -- with the best of
  13. intentions -- fertilize the weeds and poison the roses. It's the job of the
  14. community as a whole to self-manage, keep the problems to a minimum, and
  15. educate those coming into the community so that they can become valuable
  16. contributing members.
  17. Similarly, while we aim for Trac to be a perfect representation of the state
  18. of Django's progress, we acknowledge that this simply will not happen. By
  19. distributing the load of Trac maintenance to the community, we accept that
  20. there will be mistakes. Trac is "mostly accurate", and we give allowances for
  21. the fact that sometimes it will be wrong. That's okay. We're perfectionists
  22. with deadlines.
  23. We rely on the community to keep participating, keep tickets as accurate as
  24. possible, and raise issues for discussion on our mailing lists when there is
  25. confusion or disagreement.
  26. Django is a community project, and every contribution helps. We can't do this
  27. without YOU!
  28. Triage workflow
  29. ---------------
  30. Unfortunately, not all bug reports and feature requests in the ticket tracker
  31. provide all the :doc:`required details<bugs-and-features>`. A number of
  32. tickets have patches, but those patches don't meet all the requirements of a
  33. :ref:`good patch<patch-style>`.
  34. One way to help out is to *triage* tickets that have been created by other
  35. users. The core team and several community members work on this regularly, but
  36. more help is always appreciated.
  37. Most of the workflow is based around the concept of a ticket's
  38. :ref:`triage stages <triage-stages>`. Each stage describes where in its
  39. lifetime a given ticket is at any time. Along with a handful of flags, this
  40. attribute easily tells us what and who each ticket is waiting on.
  41. Since a picture is worth a thousand words, let's start there:
  42. .. image:: /internals/_images/triage_process.*
  43. :height: 501
  44. :width: 400
  45. :alt: Django's ticket triage workflow
  46. We've got two roles in this diagram:
  47. * :doc:`Committers</internals/committers>` (also called core developers):
  48. people with commit access who are responsible for making the big
  49. decisions, writing large portions of the code and integrating the
  50. contributions of the community.
  51. * Ticket triagers: anyone in the Django community who chooses to
  52. become involved in Django's development process. Our Trac installation
  53. is intentionally left open to the public, and anyone can triage tickets.
  54. Django is a community project, and we encourage :ref:`triage by the
  55. community<how-can-i-help-with-triaging>`.
  56. By way of example, here we see the lifecycle of an average ticket:
  57. * Alice creates a ticket, and uploads an incomplete patch (no tests, incorrect
  58. implementation).
  59. * Bob reviews the patch, marks it "Accepted", "needs tests", and "patch needs
  60. improvement", and leaves a comment telling Alice how the patch could be
  61. improved.
  62. * Alice updates the patch, adding tests (but not changing the
  63. implementation). She removes the two flags.
  64. * Charlie reviews the patch and resets the "patch needs improvement" flag with
  65. another comment about improving the implementation.
  66. * Alice updates the patch, fixing the implementation. She removes the "patch
  67. needs improvement" flag.
  68. * Daisy reviews the patch, and marks it RFC.
  69. * Jacob, a core developer, reviews the RFC patch, applies it to his checkout,
  70. and commits it.
  71. Some tickets require much less feedback than this, but then again some tickets
  72. require much much more.
  73. .. _triage-stages:
  74. Triage stages
  75. -------------
  76. Below we describe in more detail the various stages that a ticket may flow
  77. through during its lifetime.
  78. Unreviewed
  79. ~~~~~~~~~~
  80. The ticket has not been reviewed by anyone who felt qualified to make a
  81. judgment about whether the ticket contained a valid issue, a viable feature,
  82. or ought to be closed for any of the various reasons.
  83. Accepted
  84. ~~~~~~~~
  85. The big grey area! The absolute meaning of "accepted" is that the issue
  86. described in the ticket is valid and is in some stage of being worked on.
  87. Beyond that there are several considerations:
  88. * **Accepted + No Flags**
  89. The ticket is valid, but no one has submitted a patch for it yet. Often this
  90. means you could safely start writing a patch for it. This is generally more
  91. true for the case of accepted bugs than accepted features. A ticket for a bug
  92. that has been accepted means that the issue has been verified by at least one
  93. triager as a legitimate bug - and should probably be fixed if possible. An
  94. accepted new feature may only mean that one triager thought the feature would
  95. be good to have, but this alone does not represent a consensus view or imply
  96. with any certainty that a patch will be accepted for that feature. Seek more
  97. feedback before writing an extensive patch if you are in doubt.
  98. * **Accepted + Has Patch**
  99. The ticket is waiting for people to review the supplied patch. This means
  100. downloading the patch and trying it out, verifying that it contains tests
  101. and docs, running the test suite with the included patch, and leaving
  102. feedback on the ticket.
  103. * **Accepted + Has Patch + Needs ...**
  104. This means the ticket has been reviewed, and has been found to need further
  105. work. "Needs tests" and "Needs documentation" are self-explanatory. "Patch
  106. needs improvement" will generally be accompanied by a comment on the ticket
  107. explaining what is needed to improve the code.
  108. Ready For Checkin
  109. ~~~~~~~~~~~~~~~~~
  110. The ticket was reviewed by any member of the community other than the person
  111. who supplied the patch and found to meet all the requirements for a
  112. commit-ready patch. A core committer now needs to give the patch a final
  113. review prior to being committed. See the
  114. :ref:`New contributors' FAQ<new-contributors-faq>` for "My ticket has been in
  115. RFC forever! What should I do?"
  116. Someday/Maybe
  117. ~~~~~~~~~~~~~
  118. This stage isn't shown on the diagram. It's only used by core developers to
  119. keep track of high-level ideas or long term feature requests.
  120. These tickets are uncommon and overall less useful since they don't describe
  121. concrete actionable issues. They are enhancement requests that we might
  122. consider adding someday to the framework if an excellent patch is submitted.
  123. They are not a high priority.
  124. Other triage attributes
  125. -----------------------
  126. A number of flags, appearing as checkboxes in Trac, can be set on a ticket:
  127. Has patch
  128. ~~~~~~~~~
  129. This means the ticket has an associated
  130. :doc:`patch<writing-code/submitting-patches>`. These will be reviewed
  131. to see if the patch is "good".
  132. The following three fields (Needs documentation, Needs tests,
  133. Patch needs improvement) apply only if a patch has been supplied.
  134. Needs documentation
  135. ~~~~~~~~~~~~~~~~~~~
  136. This flag is used for tickets with patches that need associated
  137. documentation. Complete documentation of features is a prerequisite
  138. before we can check them into the codebase.
  139. Needs tests
  140. ~~~~~~~~~~~
  141. This flags the patch as needing associated unit tests. Again, this
  142. is a required part of a valid patch.
  143. Patch needs improvement
  144. ~~~~~~~~~~~~~~~~~~~~~~~
  145. This flag means that although the ticket *has* a patch, it's not quite
  146. ready for checkin. This could mean the patch no longer applies
  147. cleanly, there is a flaw in the implementation, or that the code
  148. doesn't meet our standards.
  149. Easy pickings
  150. ~~~~~~~~~~~~~
  151. Tickets that would require small, easy, patches.
  152. Type
  153. ~~~~
  154. Tickets should be categorized by *type* between:
  155. * New Feature
  156. For adding something new.
  157. * Bug
  158. For when an existing thing is broken or not behaving as expected.
  159. * Cleanup/optimization
  160. For when nothing is broken but something could be made cleaner,
  161. better, faster, stronger.
  162. Component
  163. ~~~~~~~~~
  164. Tickets should be classified into *components* indicating which area of
  165. the Django codebase they belong to. This makes tickets better organized and
  166. easier to find.
  167. Severity
  168. ~~~~~~~~
  169. The *severity* attribute is used to identify blockers, that is, issues which
  170. should get fixed before releasing the next version of Django. Typically those
  171. issues are bugs causing regressions from earlier versions or potentially
  172. causing severe data losses. This attribute is quite rarely used and the vast
  173. majority of tickets have a severity of "Normal".
  174. Version
  175. ~~~~~~~
  176. It is possible to use the *version* attribute to indicate in which
  177. version the reported bug was identified.
  178. UI/UX
  179. ~~~~~
  180. This flag is used for tickets that relate to User Interface and User
  181. Experiences questions. For example, this flag would be appropriate for
  182. user-facing features in forms or the admin interface.
  183. Cc
  184. ~~
  185. You may add your username or email address to this field to be notified when
  186. new contributions are made to the ticket.
  187. Keywords
  188. ~~~~~~~~
  189. With this field you may label a ticket with multiple keywords. This can be
  190. useful, for example, to group several tickets of a same theme. Keywords can
  191. either be comma or space separated. Keyword search finds the keyword string
  192. anywhere in the keywords. For example, clicking on a ticket with the keyword
  193. "form" will yield similar tickets tagged with keywords containing strings such
  194. as "formset", "modelformset", and "ManagementForm".
  195. .. _closing-tickets:
  196. Closing Tickets
  197. ---------------
  198. When a ticket has completed its useful lifecycle, it's time for it to be
  199. closed. Closing a ticket is a big responsibility, though. You have to be sure
  200. that the issue is really resolved, and you need to keep in mind that the
  201. reporter of the ticket may not be happy to have their ticket closed (unless
  202. it's fixed, of course). If you're not certain about closing a ticket, just
  203. leave a comment with your thoughts instead.
  204. If you do close a ticket, you should always make sure of the following:
  205. * Be certain that the issue is resolved.
  206. * Leave a comment explaining the decision to close the ticket.
  207. * If there is a way they can improve the ticket to reopen it, let them know.
  208. * If the ticket is a duplicate, reference the original ticket. Also
  209. cross-reference the closed ticket by leaving a comment in the original one
  210. -- this allows to access more related information about the reported bug
  211. or requested feature.
  212. * **Be polite.** No one likes having their ticket closed. It can be
  213. frustrating or even discouraging. The best way to avoid turning people
  214. off from contributing to Django is to be polite and friendly and to offer
  215. suggestions for how they could improve this ticket and other tickets in
  216. the future.
  217. A ticket can be resolved in a number of ways:
  218. * fixed
  219. Used by the core developers once a patch has been rolled into
  220. Django and the issue is fixed.
  221. * invalid
  222. Used if the ticket is found to be incorrect. This means that the
  223. issue in the ticket is actually the result of a user error, or
  224. describes a problem with something other than Django, or isn't
  225. a bug report or feature request at all (for example, some new users
  226. submit support queries as tickets).
  227. * wontfix
  228. Used when a core developer decides that this request is not
  229. appropriate for consideration in Django. This is usually chosen after
  230. discussion in the |django-developers| mailing list. Feel free to
  231. start or join in discussions of "wontfix" tickets on the
  232. |django-developers| mailing list, but please do not reopen tickets
  233. closed as "wontfix" by a :doc:`core developer</internals/committers>`.
  234. * duplicate
  235. Used when another ticket covers the same issue. By closing duplicate
  236. tickets, we keep all the discussion in one place, which helps
  237. everyone.
  238. * worksforme
  239. Used when the ticket doesn't contain enough detail to replicate
  240. the original bug.
  241. * needsinfo
  242. Used when the ticket does not contain enough information to replicate
  243. the reported issue but is potentially still valid. The ticket
  244. should be reopened when more information is supplied.
  245. If you believe that the ticket was closed in error -- because you're
  246. still having the issue, or it's popped up somewhere else, or the triagers have
  247. made a mistake -- please reopen the ticket and provide further information.
  248. Again, please do not reopen tickets that have been marked as "wontfix" by core
  249. developers and bring the issue to |django-developers| instead.
  250. .. _how-can-i-help-with-triaging:
  251. How can I help with triaging?
  252. -----------------------------
  253. The triage process is primarily driven by community members. Really,
  254. **ANYONE** can help.
  255. Core developers may provide feedback on issues they're familiar with, or make
  256. decisions on controversial ones, but they aren't responsible for triaging
  257. tickets in general.
  258. To get involved, start by `creating an account on Trac`_. If you have an
  259. account but have forgotten your password, you can reset it using the `password
  260. reset page`_.
  261. Then, you can help out by:
  262. * Closing "Unreviewed" tickets as "invalid", "worksforme" or "duplicate."
  263. * Closing "Unreviewed" tickets as "needsinfo" when the description is too
  264. sparse to be actionnable, or when they're feature requests requiring a
  265. discussion on |django-developers|.
  266. * Correcting the "Needs tests", "Needs documentation", or "Has patch"
  267. flags for tickets where they are incorrectly set.
  268. * Setting the "`Easy pickings`_" flag for tickets that are small and
  269. relatively straightforward.
  270. * Set the *type* of tickets that are still uncategorized.
  271. * Checking that old tickets are still valid. If a ticket hasn't seen
  272. any activity in a long time, it's possible that the problem has been
  273. fixed but the ticket hasn't yet been closed.
  274. * Identifying trends and themes in the tickets. If there are a lot of bug
  275. reports about a particular part of Django, it may indicate we should
  276. consider refactoring that part of the code. If a trend is emerging,
  277. you should raise it for discussion (referencing the relevant tickets)
  278. on |django-developers|.
  279. * Verify if patches submitted by other users are correct. If they are correct
  280. and also contain appropriate documentation and tests then move them to the
  281. "Ready for Checkin" stage. If they are not correct then leave a comment to
  282. explain why and set the corresponding flags ("Patch needs improvement",
  283. "Needs tests" etc.).
  284. .. note::
  285. The `Reports page`_ contains links to many useful Trac queries, including
  286. several that are useful for triaging tickets and reviewing patches as
  287. suggested above.
  288. You can also find more :doc:`new-contributors`.
  289. .. _Reports page: https://code.djangoproject.com/wiki/Reports
  290. However, we do ask the following of all general community members working in
  291. the ticket database:
  292. * Please **don't** close tickets as "wontfix." The core developers will
  293. make the final determination of the fate of a ticket, usually after
  294. consultation with the community.
  295. * Please **don't** promote your own tickets to "Ready for checkin". You
  296. may mark other people's tickets which you've reviewed as "Ready for
  297. checkin", but you should get at minimum one other community member to
  298. review a patch that you submit.
  299. * Please **don't** reverse a decision that has been made by a :doc:`core
  300. developer</internals/committers>`. If you disagree with a decision that
  301. has been made, please post a message to |django-developers|.
  302. * If you're unsure if you should be making a change, don't make the
  303. change but instead leave a comment with your concerns on the ticket,
  304. or post a message to |django-developers|. It's okay to be unsure,
  305. but your input is still valuable.
  306. .. _Trac: https://code.djangoproject.com/
  307. .. _i18n branch: https://code.djangoproject.com/browser/django/branches/i18n
  308. .. _`tags/releases`: https://code.djangoproject.com/browser/django/tags/releases
  309. .. _`easy pickings`: https://code.djangoproject.com/query?status=!closed&easy=1
  310. .. _`creating an account on Trac`: https://www.djangoproject.com/accounts/register/
  311. .. _password reset page: https://www.djangoproject.com/accounts/password/reset/