From ebf4a4edc58e667d89f6e0039c613e22cf4a20fd Mon Sep 17 00:00:00 2001 From: Vadzim Hushchanskou Date: Tue, 22 Oct 2024 10:09:06 +0300 Subject: [PATCH] Max Item name fix --- CHANGELOG.md | 4 ++-- pytest_reportportal/service.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d8036e3..71caabd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,10 @@ # Changelog ## [Unreleased] - -## [5.4.3] ### Fixed - Issue [#375](https://github.com/reportportal/agent-python-pytest/issues/375): Fix max Item name length, by @HardNorth + +## [5.4.3] ### Added - Issue [#332](https://github.com/reportportal/agent-python-pytest/issues/332): Support for fixture reporting, by @HardNorth diff --git a/pytest_reportportal/service.py b/pytest_reportportal/service.py index 12905c5..d786875 100644 --- a/pytest_reportportal/service.py +++ b/pytest_reportportal/service.py @@ -52,7 +52,7 @@ log = logging.getLogger(__name__) -MAX_ITEM_NAME_LENGTH: int = 256 +MAX_ITEM_NAME_LENGTH: int = 1024 TRUNCATION_STR: str = '...' ROOT_DIR: str = str(os.path.abspath(curdir)) PYTEST_MARKS_IGNORE: Set[str] = {'parametrize', 'usefixtures', 'filterwarnings'}