Several enhancements
This commit is contained in:
@@ -3,6 +3,7 @@
|
||||
|
||||
from types import ClassMethodDescriptorType
|
||||
from jira import JIRA, Issue, Comment, exceptions
|
||||
from datetime import date
|
||||
import re
|
||||
import csv
|
||||
import xlsxwriter
|
||||
@@ -16,10 +17,10 @@ logging.basicConfig(filename='sprint efforts.log',
|
||||
|
||||
host = "https://jira.wien.gv.at/"
|
||||
pat = "OTAyMTM3MjY0MjE0Ovz6bu0ti1TlEdSegmmiWiJ2wGeD"
|
||||
sprint = 2
|
||||
#sprint = 2
|
||||
|
||||
row = 0; col = 0
|
||||
workbook = xlsxwriter.Workbook(f'efforts sprint {sprint}.xlsx')
|
||||
workbook = xlsxwriter.Workbook(f'efforts as of preplanning {date.today()}.xlsx')
|
||||
worksheet = workbook.add_worksheet('efforts')
|
||||
|
||||
cell_format = workbook.add_format()
|
||||
@@ -43,7 +44,7 @@ issues_Jql = jira_server.search_issues('filter=25827') #, expand='changelog')
|
||||
#issues_Jql = jira_server.search_issues('key in (DKARB-140)') #, expand='changelog')
|
||||
#issues_Jql = jira_server.search_issues('labels in (Refinement11012022) AND type not in (Bug) AND status not in (Done) and ("Story Points" is EMPTY or "Story Points" = 0)') #, expand='changelog')
|
||||
|
||||
logging.info('Sum effort stored in issue-comments of pre-planning sprint {}'.format(sprint))
|
||||
logging.info(f'Sum effort stored in issue-comments of pre-planning of {date.today()}')
|
||||
xsp = lambda s: s or 0
|
||||
|
||||
issue: Issue
|
||||
|
||||
Reference in New Issue
Block a user