Metadata-Version: 2.1
Name: robotframework-jira
Version: 0.0.2
Summary: Robot Framework wrapper for JIRA using atlassian-python-api
Home-page: https://github.com/IlfirinPL/robotframework-jira
Author: Marcin Koperski
Author-email: marcin.koperski+github@gmail.com
License: MIT
Download-URL: https://pypi.python.org/pypi/robotframework-jira
Keywords: robotframework testing jira
Platform: any
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Software Development :: Testing
Classifier: Topic :: Software Development :: Quality Assurance
License-File: LICENSE

robotframework-jira
====================

.. image:: https://img.shields.io/pypi/v/robotframework-jira.svg
    :target: https://pypi.python.org/pypi/robotframework-jira
.. image:: https://img.shields.io/pypi/l/robotframework-jira.svg
    :target: https://pypi.python.org/pypi/robotframework-jira


Robot Framework keyword library wrapper for
`atlassian-python-api <https://atlassian-python-api.readthedocs.io/jira.html>`__

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! <http://robotframework.org/>`__

Installation
------------

``pip install robotframework-jira``

Usage
-----

`JIRALibrary keywords
documentation <https://ilfirinpl.github.io/robotframework-jira/>`_


.. code:: robotframework

    *** Settings ***
    Library           JIRALibrary
    
    *** 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.


