Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ilfirinpl/robotframework-jira
robotframework jira wrapper
https://github.com/ilfirinpl/robotframework-jira
Last synced: about 1 month ago
JSON representation
robotframework jira wrapper
- Host: GitHub
- URL: https://github.com/ilfirinpl/robotframework-jira
- Owner: IlfirinPL
- License: mit
- Created: 2021-11-08T14:08:33.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-11-15T09:43:28.000Z (almost 2 years ago)
- Last Synced: 2024-10-13T08:42:21.857Z (about 1 month ago)
- Language: Python
- Size: 121 KB
- Stars: 4
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- Changelog: CHANGES.rst
- License: LICENSE
Awesome Lists containing this project
README
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-jiraRobot 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
------------.. code:: shell
pip install robotframework-jira
Usage
-----`JIRALibrary keywords
documentation `_.. code:: robotframework
*** Settings ***
Library Collections
Library JIRALibrary*** Variables ***
${URL} https://jira.com
${USER} myUser
${PASS} myPass*** Test Cases ***
Connect To JIRA
${session} Connect To Jira ${URL} ${USER} ${PASS}
${projects} Projects ${session}
Log Dictionary ${projects} WARNConnect To JIRA And Skip SSL Check
Evaluate urllib3.disable_warnings()
${session} Connect To Jira ${URL} ${USER} ${PASS} verify_ssl=${False}${dict} Get Server Info ${session}
Log To Console Server Info
Log Dictionary ${dict} WARNAdd 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.