#ReportPortal RobotFramework agent
Listener for RobotFramework to report results to ReportPortal
First you need to install RobotFramework:
pip install robotframework
The latest stable version of library is available on PyPI:
pip install robotframework-reportportal
reportportal-client will be installed as a dependency
For reporting results to ReportPortal you need to pass some variables to pybot run:
REQUIRED:
- --listener robotframework_reportportal.listener
- --variable RP_UUID:"your_user_uuid"
- --variable RP_ENDPOINT:"your_reportportal_url"
- --variable RP_LAUNCH:"launch_name"
- --variable RP_PROJECT:"reportportal_project_name"
NOT REQUIRED:
- --variable RP_LAUNCH_DOC:"some_documentation_for_launch"
- --variable RP_REPORT_LEVEL:"level_test_or_keyword"
- Default is "keyword", but if you want to report only tests you can use "test" value
- --variable RP_REPORT_LOGS:"yes_or_no"
- Default is "yes", but if you don't want to report logs you can use "no" value
Licensed under the GPLv3 license (see the LICENSE.txt file).