Skip to main content

Robot Framework wrapper for JIRA using atlassian-python-api

Project description

https://img.shields.io/pypi/v/robotframework-jira.svg https://img.shields.io/pypi/l/robotframework-jira.svg

Robot Framework keyword library wrapper for atlassian-python-api

This module allows easy use of JIRA’s functions

Any docstrings JIRA provides are passed through to Robot Framework, so they’re available in RIDE and in keyword documentation generated via libdoc.

For more information on Robot Framework please visit the Robot Framework homepage!

Installation

pip install robotframework-jira

Usage

JIRALibrary keywords documentation

*** Settings ***
Library     Collections
Library     JIRALibrary


*** Variables ***
${URL}      https://jira.com
${USER}     mytestid
${PASS}     myPass


*** Test Cases ***
Connect To JIRA
    ${session}    Connect To Jira    ${URL}    ${USER}    ${PASS}
    ${projects}    Projects    ${session}
    Log Dictionary    ${projects}    WARN

Connect To JIRA And Skip SSL Check
    Evaluate    urllib3.disable_warnings()
    ${session}    Connect To Jira    ${URL}    ${USER}    ${PASS}    verify_ssl=${False}
    ${projects}    Projects    ${session}
    Log Dictionary    ${projects}    WARN

Add Comment to Issue
    ${session}    Connect To Jira    ${URL}    ${USER}    ${PASS}
    Issue Add Comment    ${session}    JIRAID-1234    My long comment !

Contribute

If you like this module, please contribute! I welcome patches, documentation, issues, ideas, and so on.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

robotframework-jira-0.0.3.tar.gz (4.3 kB view hashes)

Uploaded Source

Built Distribution

robotframework_jira-0.0.3-py3-none-any.whl (4.5 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page