Skip to content

Commit a73ba54

Browse files
authored
Merge pull request #258 from seleniumbase/update-requirements
Update pytest and pytest-xdist requirements
2 parents 004ad96 + b0235db commit a73ba54

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[<img src="https://img.shields.io/github/release/seleniumbase/SeleniumBase.svg" />](https://github.com/seleniumbase/SeleniumBase/releases) [<img src="https://travis-ci.org/seleniumbase/SeleniumBase.svg?branch=master" alt="Build Status" />](https://travis-ci.org/seleniumbase/SeleniumBase) [<img src="https://badges.gitter.im/seleniumbase/SeleniumBase.svg" alt="Join the Gitter Chat" />](https://gitter.im/seleniumbase/SeleniumBase) [<img src="https://img.shields.io/github/stars/seleniumbase/seleniumbase.svg" alt="GitHub Stars" />](https://github.com/seleniumbase/SeleniumBase/stargazers)<br />
44

5-
A fast, simple, and reliable framework for automating UI testing and [prototyping JS tours](https://github.com/seleniumbase/SeleniumBase/blob/master/examples/tour_examples/ReadMe.md). SeleniumBase uses [Pytest](https://docs.pytest.org/en/latest/) and [WebDriver](https://www.seleniumhq.org/) for running Python scripts to control web browsers.
5+
A reliable test automation framework that extends [Pytest](https://docs.pytest.org/en/latest/) and uses [Selenium-WebDriver](https://www.seleniumhq.org/).
66

77
## <img src="https://cdn2.hubspot.net/hubfs/100006/images/sb_logo_box2.png" title="SeleniumBase" height="32"> Quick Start
88

@@ -58,7 +58,7 @@ There are <b>many more examples</b> to try out from the [SeleniumBase/examples](
5858

5959
<img src="https://cdn2.hubspot.net/hubfs/100006/images/sb_logo_box2.png" title="SeleniumBase" height="32">
6060

61-
Check out [SeleniumBase Website Tours](https://github.com/seleniumbase/SeleniumBase/tree/master/examples/tour_examples) (in the ``examples/tour_examples`` folder). It's the best website onboarding experience available (and it's free too). Find the [Tours ReadMe here](https://github.com/seleniumbase/SeleniumBase/blob/master/examples/tour_examples/ReadMe.md).
61+
Check out [SeleniumBase Website Tours](https://github.com/seleniumbase/SeleniumBase/tree/master/examples/tour_examples) (in the ``examples/tour_examples`` folder). It's the most efficient website onboarding experience available (and it's free too). Find the [Tours ReadMe here](https://github.com/seleniumbase/SeleniumBase/blob/master/examples/tour_examples/ReadMe.md).
6262

6363
```
6464
cd tour_examples

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ unittest2
88
selenium==3.141.0
99
requests==2.20.1
1010
urllib3==1.24.1
11-
pytest>=4.0.1
11+
pytest>=4.0.2
1212
pytest-cov>=2.6.0
1313
pytest-html>=1.19.0
1414
pytest-rerunfailures>=5.0
15-
pytest-xdist>=1.24.1
15+
pytest-xdist>=1.25.0
1616
parameterized==0.6.1
1717
beautifulsoup4>=4.6.0
1818
colorama==0.4.1

seleniumbase/config/proxy_list.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@
1515
Example proxies in PROXY_LIST below are not guaranteed to be active or secure.
1616
If you don't already have a proxy server to connect to,
1717
you can try finding one from one of following sites:
18-
* https://www.proxynova.com/proxy-server-list/country-us/
1918
* https://www.us-proxy.org/
2019
* https://proxyservers.pro/proxy/list/protocol/http/country/US/
2120
"""
2221

2322
PROXY_LIST = {
24-
"example1": "104.198.68.109:3128", # (Example) - set your own proxy here
23+
"example1": "54.39.97.250:3128", # (Example) - set your own proxy here
24+
"example2": "18.191.175.174:8080", # (Example) - set your own proxy here
2525
"proxy1": None,
2626
"proxy2": None,
2727
"proxy3": None,

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
setup(
1919
name='seleniumbase',
20-
version='1.17.14',
20+
version='1.17.15',
2121
description='All-in-One Test Automation Framework',
2222
long_description=long_description,
2323
long_description_content_type='text/markdown',
@@ -61,11 +61,11 @@
6161
'selenium==3.141.0',
6262
'requests==2.20.1', # Changing this may effect "urllib3"
6363
'urllib3==1.24.1', # Keep this lib in sync with "requests"
64-
'pytest>=4.0.1',
64+
'pytest>=4.0.2',
6565
'pytest-cov>=2.6.0',
6666
'pytest-html>=1.19.0',
6767
'pytest-rerunfailures>=5.0',
68-
'pytest-xdist>=1.24.1',
68+
'pytest-xdist>=1.25.0',
6969
'parameterized==0.6.1',
7070
'beautifulsoup4>=4.6.0', # Keep at >=4.6.0 while using bs4
7171
'colorama==0.4.1',

0 commit comments

Comments
 (0)