Agent for Reporting results of tests to the Report Portal
Project description
Pytest plugin for reporting test results of the Pytest to the ReportPortal.
Installation
To install pytest plugin execute next command in a terminal:
pip install pytest-reportportal
Look through the CONTRIBUTING.rst for contribution guidelines.
Configuration
Prepare the config file pytest.ini
in root directory of tests or specify
any one using pytest command line option:
py.test -c config.cfg
The pytest.ini
file should have next mandatory fields:
rp_api_key
- value could be found in the User Profile sectionrp_project
- name of project in ReportPortalrp_endpoint
- address of ReportPortal Server
Example of pytest.ini
:
[pytest]
rp_api_key = fb586627-32be-47dd-93c1-678873458a5f
rp_endpoint = http://192.168.1.10:8080
rp_project = user_personal
rp_launch = AnyLaunchName
rp_launch_attributes = 'PyTest' 'Smoke'
rp_launch_description = 'Smoke test'
rp_ignore_attributes = 'xfail' 'usefixture'
The
rp_api_key
can also be set with the environment variable RP_API_KEY. This will override the value set forrp_api_key
in pytest.ini
There are also optional parameters: https://reportportal.io/docs/log-data-in-reportportal/test-framework-integration/Python/pytest/
Examples
For logging of the test item flow to ReportPortal, please, use the python logging handler provided by plugin like bellow:
in conftest.py:
import logging
import sys
import pytest
from reportportal_client import RPLogger
@pytest.fixture(scope="session")
def rp_logger():
logger = logging.getLogger(__name__)
logger.setLevel(logging.DEBUG)
logging.setLoggerClass(RPLogger)
return logger
in tests:
# In this case only INFO messages will be sent to the ReportPortal.
def test_one(rp_logger):
rp_logger.info("Case1. Step1")
x = "this"
rp_logger.info("x is: %s", x)
assert 'h' in x
# Message with an attachment.
import subprocess
free_memory = subprocess.check_output("free -h".split())
rp_logger.info(
"Case1. Memory consumption",
attachment={
"name": "free_memory.txt",
"data": free_memory,
"mime": "application/octet-stream",
},
)
# This debug message will not be sent to the ReportPortal.
rp_logger.debug("Case1. Debug message")
Launching
To run test with ReportPortal you must provide ‘–reportportal’ flag:
py.test ./tests --reportportal
Check the documentation to find more detailed information about how to integrate pytest with ReportPortal using an agent: https://reportportal.io/docs/log-data-in-reportportal/test-framework-integration/Python/pytest/
Copyright Notice
Licensed under the Apache 2.0 license (see the LICENSE file).
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file pytest_reportportal-5.4.5.tar.gz
.
File metadata
- Download URL: pytest_reportportal-5.4.5.tar.gz
- Upload date:
- Size: 27.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 495d117356aaee1b12dc653fdb9b5cc12642650bd623047a83cca80dd94fe143 |
|
MD5 | e3a2f674508ae90eb5ddf64a6e79d77c |
|
BLAKE2b-256 | 57adf2ed53e44eb7acdc6491f3f30435b27598225710231960761c492c862276 |
File details
Details for the file pytest_reportportal-5.4.5-py2.py3-none-any.whl
.
File metadata
- Download URL: pytest_reportportal-5.4.5-py2.py3-none-any.whl
- Upload date:
- Size: 27.3 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d43c0e89593646da9b26c1fbe06024d929357b407196166684e96c313a85406d |
|
MD5 | 32c7714f5dfb458117204d1c148b2ed2 |
|
BLAKE2b-256 | d10c1528190c074163cfd50995dac25d4e16f70c4f1208417b7e0f51556fdb7f |