I am trying to integrate pytest-jira
plugin to my python script. I am referring to this link.
It is not feasible to hard code username/password in clear text form in ~/jira.cfg
. Is there any way I can override them from outside? Basically I am looking for ways to skip hard coding of password in jira.cfg
.
username = USERNAME (or blank for no authentication
password = PASSWORD (or blank for no authentication)
Can someone suggest a way to do this?