diff --git a/pytest_reportportal/rp_logging.py b/pytest_reportportal/rp_logging.py index dba3cdb0..b3e9427f 100644 --- a/pytest_reportportal/rp_logging.py +++ b/pytest_reportportal/rp_logging.py @@ -116,7 +116,7 @@ def filter(self, record): if record.name == 'urllib3.connectionpool': # Filter the reportportal_client requests instance # urllib3 usage - if self.endpoint in self.format(record): + if self.endpoint.rstrip('/') in self.format(record): return False return True diff --git a/requirements.txt b/requirements.txt index 5445b5df..1a6bcaa8 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ dill>=0.2.7.1 pytest>=3.0.7 -reportportal-client>=5.0.8 +reportportal-client>=5.0.9 six>=1.15.0 diff --git a/setup.py b/setup.py index 0e7086ac..da09db6a 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ from setuptools import setup -__version__ = '5.0.7' +__version__ = '5.0.8' def read_file(fname):