File tree Expand file tree Collapse file tree 4 files changed +6
-5
lines changed
seleniumbase/console_scripts Expand file tree Collapse file tree 4 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 1
1
[pytest]
2
2
# Let console output be seen. Don't override the pytest plugin.
3
3
addopts = --capture =no --ignore conftest.py -p no:cacheprovider
4
- filterwarnings = ignore::DeprecationWarning
4
+ # Ignore warnings such as DeprecationWarning and pytest.PytestUnknownMarkWarning
5
+ filterwarnings = ignore::pytest.PytestWarning
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ urllib3==1.24.3
10
10
requests >= 2.21.0
11
11
selenium == 3.141.0
12
12
pluggy >= 0.11.0
13
- pytest >= 4.4.2
13
+ pytest >= 4.5.0
14
14
pytest-cov >= 2.7.1
15
15
pytest-forked >= 1.0.2
16
16
pytest-html >= 1.20.0
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ def main():
54
54
data .append ("[pytest]" )
55
55
data .append ("addopts = --capture=no --ignore conftest.py "
56
56
"-p no:cacheprovider" )
57
- data .append ("filterwarnings = ignore::DeprecationWarning " )
57
+ data .append ("filterwarnings = ignore::pytest.PytestWarning " )
58
58
file_path = "%s/%s" % (dir_name , "pytest.ini" )
59
59
file = codecs .open (file_path , "w+" , "utf-8" )
60
60
file .writelines ("\r \n " .join (data ))
Original file line number Diff line number Diff line change 17
17
18
18
setup (
19
19
name = 'seleniumbase' ,
20
- version = '1.23.9 ' ,
20
+ version = '1.23.10 ' ,
21
21
description = 'Reliable Browser Automation & Testing Framework' ,
22
22
long_description = long_description ,
23
23
long_description_content_type = 'text/markdown' ,
63
63
'requests>=2.21.0' ,
64
64
'selenium==3.141.0' ,
65
65
'pluggy>=0.11.0' ,
66
- 'pytest>=4.4.2 ' ,
66
+ 'pytest>=4.5.0 ' ,
67
67
'pytest-cov>=2.7.1' ,
68
68
'pytest-forked>=1.0.2' ,
69
69
'pytest-html>=1.20.0' ,
You can’t perform that action at this time.
0 commit comments