Skip to content

Commit ebf4a4e

Browse files
committed
Max Item name fix
1 parent 702cc9b commit ebf4a4e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# Changelog
22

33
## [Unreleased]
4-
5-
## [5.4.3]
64
### Fixed
75
- Issue [#375](https://github.com/reportportal/agent-python-pytest/issues/375): Fix max Item name length, by @HardNorth
6+
7+
## [5.4.3]
88
### Added
99
- Issue [#332](https://github.com/reportportal/agent-python-pytest/issues/332): Support for fixture reporting, by @HardNorth
1010

pytest_reportportal/service.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252

5353
log = logging.getLogger(__name__)
5454

55-
MAX_ITEM_NAME_LENGTH: int = 256
55+
MAX_ITEM_NAME_LENGTH: int = 1024
5656
TRUNCATION_STR: str = '...'
5757
ROOT_DIR: str = str(os.path.abspath(curdir))
5858
PYTEST_MARKS_IGNORE: Set[str] = {'parametrize', 'usefixtures', 'filterwarnings'}

0 commit comments

Comments
 (0)