Skip to content

Commit d334b67

Browse files
committed
Fix for #198
1 parent 26f7216 commit d334b67

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Changelog
22

33
## [Unreleased]
4+
- Issue [#198](https://github.com/reportportal/client-Python/issues/198): Python 3.8+ logging issue, by @HardNorth
45

56
## [5.2.5]
67
### Fixed

tests/logs/test_rp_logger.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ def test_log_level_filter(handler_level, log_level, expected_calls):
6969
assert mock_client.log.call_count == expected_calls
7070

7171

72-
@pytest.skipif(sys.version_info < (3, 8), '"stacklevel" introduced in Python 3.8, so not actual for earlier versions')
72+
@pytest.mark.skipif(sys.version_info < (3, 8), '"stacklevel" introduced in Python 3.8, so not actual for earlier versions')
7373
@mock.patch('reportportal_client.logs.logging.Logger.handle')
7474
def test_stacklevel_record_make(logger_handler):
7575
logger = RPLogger('test_logger')

0 commit comments

Comments
 (0)