File tree Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -9,11 +9,11 @@ unittest2
99selenium == 3.141.0
1010requests == 2.20.0
1111urllib3 == 1.24.1
12- pytest >= 3.10 .0
12+ pytest >= 4.0 .0
1313pytest-cov >= 2.6.0
1414pytest-html >= 1.19.0
15- pytest-rerunfailures >= 4.2
16- pytest-xdist >= 1.24.0
15+ pytest-rerunfailures >= 5.0
16+ pytest-xdist >= 1.24.1
1717parameterized == 0.6.1
1818beautifulsoup4 >= 4.6.0
1919pyotp >= 2.2.7
Original file line number Diff line number Diff line change @@ -2734,7 +2734,7 @@ def tearDown(self):
27342734 """
27352735 has_exception = False
27362736 if sys .version .startswith ('3' ) and hasattr (self , '_outcome' ):
2737- if self ._outcome .errors :
2737+ if hasattr ( self . _outcome , 'errors' ) and self ._outcome .errors :
27382738 has_exception = True
27392739 else :
27402740 has_exception = sys .exc_info ()[1 ] is not None
Original file line number Diff line number Diff line change 1717
1818setup (
1919 name = 'seleniumbase' ,
20- version = '1.17.3 ' ,
20+ version = '1.17.4 ' ,
2121 description = 'All-in-One Test Automation Framework' ,
2222 long_description = long_description ,
2323 long_description_content_type = 'text/markdown' ,
6161 'selenium==3.141.0' ,
6262 'requests==2.20.0' , # Changing this may effect "urllib3"
6363 'urllib3==1.24.1' , # Keep this lib in sync with "requests"
64- 'pytest>=3.10 .0' ,
64+ 'pytest>=4.0 .0' ,
6565 'pytest-cov>=2.6.0' ,
6666 'pytest-html>=1.19.0' ,
67- 'pytest-rerunfailures>=4.2 ' ,
68- 'pytest-xdist>=1.24.0 ' ,
67+ 'pytest-rerunfailures>=5.0 ' ,
68+ 'pytest-xdist>=1.24.1 ' ,
6969 'parameterized==0.6.1' ,
7070 'beautifulsoup4>=4.6.0' , # Keep at >=4.6.0 while using bs4
7171 'pyotp>=2.2.7' ,
You can’t perform that action at this time.
0 commit comments