File tree 3 files changed +8
-8
lines changed
3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -9,11 +9,11 @@ unittest2
9
9
selenium == 3.141.0
10
10
requests == 2.20.0
11
11
urllib3 == 1.24.1
12
- pytest >= 3.10 .0
12
+ pytest >= 4.0 .0
13
13
pytest-cov >= 2.6.0
14
14
pytest-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
17
17
parameterized == 0.6.1
18
18
beautifulsoup4 >= 4.6.0
19
19
pyotp >= 2.2.7
Original file line number Diff line number Diff line change @@ -2734,7 +2734,7 @@ def tearDown(self):
2734
2734
"""
2735
2735
has_exception = False
2736
2736
if sys .version .startswith ('3' ) and hasattr (self , '_outcome' ):
2737
- if self ._outcome .errors :
2737
+ if hasattr ( self . _outcome , 'errors' ) and self ._outcome .errors :
2738
2738
has_exception = True
2739
2739
else :
2740
2740
has_exception = sys .exc_info ()[1 ] is not None
Original file line number Diff line number Diff line change 17
17
18
18
setup (
19
19
name = 'seleniumbase' ,
20
- version = '1.17.3 ' ,
20
+ version = '1.17.4 ' ,
21
21
description = 'All-in-One Test Automation Framework' ,
22
22
long_description = long_description ,
23
23
long_description_content_type = 'text/markdown' ,
61
61
'selenium==3.141.0' ,
62
62
'requests==2.20.0' , # Changing this may effect "urllib3"
63
63
'urllib3==1.24.1' , # Keep this lib in sync with "requests"
64
- 'pytest>=3.10 .0' ,
64
+ 'pytest>=4.0 .0' ,
65
65
'pytest-cov>=2.6.0' ,
66
66
'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 ' ,
69
69
'parameterized==0.6.1' ,
70
70
'beautifulsoup4>=4.6.0' , # Keep at >=4.6.0 while using bs4
71
71
'pyotp>=2.2.7' ,
You can’t perform that action at this time.
0 commit comments