We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 702cc9b commit ebf4a4eCopy full SHA for ebf4a4e
CHANGELOG.md
@@ -1,10 +1,10 @@
1
# Changelog
2
3
## [Unreleased]
4
-
5
-## [5.4.3]
6
### Fixed
7
- Issue [#375](https://github.com/reportportal/agent-python-pytest/issues/375): Fix max Item name length, by @HardNorth
+
+## [5.4.3]
8
### Added
9
- Issue [#332](https://github.com/reportportal/agent-python-pytest/issues/332): Support for fixture reporting, by @HardNorth
10
pytest_reportportal/service.py
@@ -52,7 +52,7 @@
52
53
log = logging.getLogger(__name__)
54
55
-MAX_ITEM_NAME_LENGTH: int = 256
+MAX_ITEM_NAME_LENGTH: int = 1024
56
TRUNCATION_STR: str = '...'
57
ROOT_DIR: str = str(os.path.abspath(curdir))
58
PYTEST_MARKS_IGNORE: Set[str] = {'parametrize', 'usefixtures', 'filterwarnings'}
0 commit comments