Skip to content

Commit

Permalink
Max Item name fix
Browse files Browse the repository at this point in the history
  • Loading branch information
HardNorth committed Oct 22, 2024
1 parent 702cc9b commit ebf4a4e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
2 changes: 1 addition & 1 deletion pytest_reportportal/service.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'}
Expand Down

0 comments on commit ebf4a4e

Please sign in to comment.