...
Info |
---|
To test it, get an Epic from the target project, this Epic should have child issues that contain story points != null. |
Your test script in the Console should look like this:
Code Block | ||
---|---|---|
| ||
# For testing purposes in the Console, do:
issue = Issue('Your Epic - Issue Key')
sum = 0
for issue in api.search_issues(f'parent = {issue.key}'):
sum += issue.fields.<your_story_points_customfield_id>
issue.set('<your_story_points_customfield_id>', sum)
|
After your testing is done, remove or comment the issue = Issue('Your Epic - Issue Key')
part and plug it into a listener/postfunction.