Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ unittest2
selenium==3.141.0
requests==2.20.0
urllib3==1.24.1
pytest>=3.10.0
pytest>=4.0.0
pytest-cov>=2.6.0
pytest-html>=1.19.0
pytest-rerunfailures>=4.2
pytest-xdist>=1.24.0
pytest-rerunfailures>=5.0
pytest-xdist>=1.24.1
parameterized==0.6.1
beautifulsoup4>=4.6.0
pyotp>=2.2.7
Expand Down
2 changes: 1 addition & 1 deletion seleniumbase/fixtures/base_case.py
Original file line number Diff line number Diff line change
Expand Up @@ -2734,7 +2734,7 @@ def tearDown(self):
"""
has_exception = False
if sys.version.startswith('3') and hasattr(self, '_outcome'):
if self._outcome.errors:
if hasattr(self._outcome, 'errors') and self._outcome.errors:
has_exception = True
else:
has_exception = sys.exc_info()[1] is not None
Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

setup(
name='seleniumbase',
version='1.17.3',
version='1.17.4',
description='All-in-One Test Automation Framework',
long_description=long_description,
long_description_content_type='text/markdown',
Expand Down Expand Up @@ -61,11 +61,11 @@
'selenium==3.141.0',
'requests==2.20.0', # Changing this may effect "urllib3"
'urllib3==1.24.1', # Keep this lib in sync with "requests"
'pytest>=3.10.0',
'pytest>=4.0.0',
'pytest-cov>=2.6.0',
'pytest-html>=1.19.0',
'pytest-rerunfailures>=4.2',
'pytest-xdist>=1.24.0',
'pytest-rerunfailures>=5.0',
'pytest-xdist>=1.24.1',
'parameterized==0.6.1',
'beautifulsoup4>=4.6.0', # Keep at >=4.6.0 while using bs4
'pyotp>=2.2.7',
Expand Down