Changes between Version 34 and Version 35 of PROCESS


Ignore:
Timestamp:
01/07/09 11:01:35 (16 years ago)
Author:
pav
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • PROCESS

    v34 v35  
    33 
    44== Overview == 
     5 
    56In order to produce the highest quality product (both internal and external), we have defined process guidelines in this section. (This is related to the SCRUM mandatory definition of the done status state.) 
    67 
     
    1819 * Trying to have much higher quality. 
    1920 * The sprint backlogs will be on the wiki page ([wiki:ITERATION_01] for example). 
     21 * The meetings are: 
     22  * weekly meetings - one per week, team members have to be present or to be represented by someone.  
     23  * progress checks - one per week between two weekly meetings, team leaders have to be present with prepared information about his/her team progress. 
    2024 * The four states of a story/task are  analyzing, designing, implementing, and testing.  
    2125 * Each passage between states requires a review.  
     
    3135 
    3236== Teams == 
     37 
    3338We define six teams for improved performance and management while developing sophie 2. The team diagram showing the splitting of the developers to teams is located here: http://sophie2.org/trac/browser/manage/sched/teams.odg [[BR]] 
    3439The six teams are as follows: 
     
    4348 
    4449== Team Roles == 
     50 
    4551For each team there is team leader defined. They are not fixed also and can be changed even during the process depending on their productivity as team leaders. The other developers are called team members. The team leader should: 
    4652 * be responsible for the progress of his/her team on the progress checks (see ?) 
     
    4955 * helps the team members if they have questions and obscurities or directs them to the person who can help them. 
    5056 
     57The team members for each task can be in the role of: 
     58 * reviewers - a person who is assigned to review a task 
     59 * implementers - the workers on a given task 
     60The reviewers and the implementers of a task must not intersect! 
     61 
    5162The Release team has an internal process described in http://sophie2.org/trac/wiki/ITERATION_03/Release/Process. 
    5263 
    5364 
    54 == Workflow === 
     65== Workflow == 
    5566 
    5667Each taken task in the current sprint should pass trough the following phases described in this diagram: 
     
    5869 
    5970=== Task States === 
     71 
    6072These are the states descriptions: 
    6173 
    62  * new 
     74 * '''new''' 
    6375  * task is waiting to be taken, and someone to determine what should be done 
    6476 * '''analysis started''' 
     
    7284  * the reviewer looks through the analysis to see if it is correct 
    7385  * the analysis should apply to [wiki:PageTemplates/TaskPageTemplate#Analysis its template] 
    74  * '''analysis ok''': the reviewer decides that the analysis of the task is correct 
     86 * '''analysis ok''' 
     87  * the reviewer decides that the analysis of the task is correct 
    7588 * '''design started'''  
    7689  * the implementer is designing the task or in other words tries to decide how it should be done 
     
    8598  * the reviewer looks through the design to see if it is correct. 
    8699  * The reviewer can imagine himself as an implementer and see if he can implement the task following the design without problems 
    87  * '''design ok''': the reviewer decides that the design of the task is correct 
     100 * '''design ok''' 
     101  * the reviewer decides that the design of the task is correct 
    88102 * '''implementation started''' 
    89103  * the implementer makes an attempt to complete the task 
     
    91105  * he/she should write an Implementation section of the task as the result of the implementation 
    92106 * '''implementation finished''': the implementer decides that the implementation of the task is ready 
    93  * '''review'': the reviewer look through the implementation to see if it is correct 
     107 * '''review''': the reviewer look through the implementation to see if it is correct 
    94108 * '''implementation ok''' 
    95109  * the reviewer decides that the implementation of the task is correct 
    96110  * the implementation section must be filled 
    97  * '''test started''': there should be appropriate tests written for the task 
    98  * '''test finished''': testing state is done, waiting for review 
     111 * '''testing started''': there should be appropriate tests written for the task 
     112 * '''testing finished''': testing state is done, waiting for review 
    99113 * '''review''' 
    100114  * the reviewer looks for missing or wrong tests 
    101115  * if there are any, the reviewer may decide they can be added later 
    102116  * if they are too important or wrong they should be fixed - the review fails 
    103  * '''test ok''' 
     117 * '''testing ok''' 
     118  * the last task state 
    104119 
    105120 * notes 
     
    160175 4. You have to write in the end of every working day a daily report about what have you done that day. You have to write at the end of every iteration a monthly report - see [wiki:REPORTS] page to learn how to write reports. 
    161176 
     177 5. You have to fill the internal backlog every working day or at least before weekly meeting. Here it is: http://spreadsheets.google.com/ccc?key=p-0Oq38E1ayuX-E_kPfPxbg&hl=en 
     178 
     179 6. You must be presents at the weeklies and the progress points or at least you have to be represented by someone. 
     180 
    162181=== Task In Time === 
    163182 
     
    172191 4. It is recommended that no one design/implement a task for which that person wrote the analysis.  
    173192 
    174  
    175 == Task Tips == 
    176  
    177  * Implementing a new external feature (visible from the user): 
    178   * analyzing  
    179    * should have a specification, and a manual testing scenario  
    180   * designing  
    181    * write an automatic test or tests that verifies that your feature is working 
    182    * look at the related code 
    183    * decide what needs to be added 
    184    * if you add new library feature 
    185     * write use case tests for it  
    186    * you may also write skeleton types (only declaration) and demos 
    187     * write an outline of your design.  
    188    * implementing 
    189     * make all the designed things work. 
    190     * ensure that all tests pass. 
    191     * during the process, add more tests.  
    192  
    193  * Researching about a technology or library 
    194   * analyzing: specify what needs to be researched 
    195    * what the research will solve 
    196    * what is needed to be solved (this is important)  
    197   * designing 
    198    * you can try things, but do not pollute the main source (for example with libraries) 
    199    * if you need to use other libraries, do it in another project (or in another branch) 
    200    * if you don't need other libraries, you can do it in a research package, but you should make sure that you don't introduce warnings, failing tests, etc.  
    201   * implementing 
    202    * you present the written results / conclusions of your research, demo codes, etc.  
    203   * reviewers: 1-2 developers  
    204  
    205  * implementing a new internal feature (a library or something, not directly visible) 
    206   * analyzing: what the library will provide 
    207   * designing: should include: 
    208    * use case tests 
    209    * samples 
    210    * demo (in some cases), 
    211    * design outline  
    212   * implementing 
    213    * the library should be implemented 
    214    * enough tests should be written during the process  
    215   * reviewers: 2 developers  
    216  
    217  * Performing structure changes or refactoring. 
    218   * analyzing: what the issues are 
    219   * designing: understanding it, and providing an idea how to fix the issues 
    220   * implementing: fixing the issues 
    221   * reviewers: 1-2 developers  
    222  
    223  * Writing a specification 
    224   * analyzing: what needs to be specified 
    225   * designing: brief ideas about the subject of the specification 
    226   * implementing: writing the specification exactly 
    227   * reviewers:  1 qa + 1 developer  
    228  
    229  * Doing documentation. 
    230   * analyzing: what needs to be documented 
    231   * designing: what it will contain (outline) and understanding of the content 
    232   * implementing: adding the appropriate content 
    233   * reviewers: 1-2 team members  
    234  
    235  * External testing (the usual testing task). 
    236   * analyzing: has to state what the focus of the tests will be 
    237   * designing: has to select test scenarios, and make new scenarios if necessary 
    238   * implementing: should apply testing scenarios and provide bugs and recommendations (things that probably the users will like/dislike) 
    239   * reviewers: 1 developer  
    240  
    241  * Fixing a bug. 
    242   * analyzing: what the bug is. Needs a manual testing scenario (in trac) 
    243   * designing: an automatic test (failing) should be present, an idea what is causing it, more tests (which detect related internal bugs), and an idea of how can be fixed 
    244   * implementing: fixing the bug, making the tests pass, and some refactoring 
    245   * reviewers: 1 QA and 1 developer  
    246  
    247 Templates for logging specific task types should be added 
    248  
    249 == Roles == 
    250  
    251  * leader: someone assigned to do the management (default: Milo) 
    252  * implementers: the workers on a given task 
    253  * reviewers: a person who is assigned to review a task 
    254   * the reviewer and the implementer may not intersect!  
    255  
    256193= Comments = 
    257194''You can put your comments here.''