Esempio n. 1
0
def connect():
    """
    Opens a Verified HTTPS Connection with the JIRA server.
    """
    certs_file = os.path.join(os.path.dirname(__file__), 'all-certs.pem')
    conn = VerifiedHTTPSConnection(get_jira_server(), ca_certs=certs_file)

    return conn