forked from zhangjing1/finishline
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use mosaic to calculate epic progress
The factory team has begun working on epics to increase the team's velocity. These epics have specific goals around increasing or decreasing a key metric by X percent. We'd like to report on progress on these epics by calculating the current metric number as a percentage of the goal. We've developed a tool, mosaic, that calculates the values of the key metrics we wish to track on. This tool can be found at [1] When generating reports using finishline, we want to have the progress percentage for these epics calculated using mosaic. This change enables this functionality. I've added a new argument '--mosaic-config' to the finshline script. When this argument is present, finishline will parse the specified config file to determine which issues to use mosaic for, as well as to determine how to calculate progress. If the argument is not specified, finishline behaves as normal. [1] https://github.com/accorvin/jira-mosaic
- Loading branch information
Showing
4 changed files
with
91 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
[mosaic] | ||
mosaic_issues=FACTORY-1940,FACTORY-1942,FACTORY-1944 | ||
baseline_start=2017-12-01 | ||
baseline_end=2018-02-28 | ||
current_period_start=2018-03-01 | ||
current_period_end=2018-05-31 | ||
|
||
[FACTORY-1940] | ||
query=prioritycycletime | ||
query_argument=Critical | ||
target=-20% | ||
|
||
[FACTORY-1942] | ||
query=cycletime | ||
target=-10% | ||
|
||
[FACTORY-1944] | ||
query=statusduration | ||
query_argument=Internal Deployment | ||
target=-20% |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,3 +6,4 @@ jinja2 | |
jira | ||
requests_kerberos | ||
pbr | ||
git+git://github.com/accorvin/jira-mosaic.git |