Coverage for /home/delusionalinsanity/bbrepos/matyan/src/matyan/fetchers/jira.py : 75%

Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
'BaseFetcher', 'JiraFetcher', )
config = self.get_config() return Jira( url=config["url"], username=config["username"], password=config["token"] )
issue = self.instance.issue(issue_id) return { 'title': issue['fields']['summary'], 'description': issue['fields']['description'], } |