-
Notifications
You must be signed in to change notification settings - Fork 127
Dev_Bug Resolution Workflow
William French edited this page Aug 7, 2014
·
1 revision
This document describes a workflow for resolving bugs. Use this workflow to ensure that your bug fixes do not cause regression or other code quality issues.
Suggested Workflow:
This is the workflow that you should follow whenever you work on a bug that is assigned to you.
- Implement a unit test to reproduce the issue. At this stage the test should not pass!
- Do whatever work is required to fix the bug.
- Run the unit test from step 1 to verify the fix (the test should pass this time).
- Run all unit tests in the project. All tests should pass. This step is critical for avoiding regression.
- Submit the fix for review using the CodeCollaborator Review Tool.
- Upon acceptance of the fix, make a pull request to the blessed repository (https://github.com/alterm4nn/ChronoZoom).
- Mark the bug as resolved (do not close).