Skip to content

Commit e003980

Browse files
authored
Merge pull request #385 from seleniumbase/update-default-driver-path
Update the default webdriver search path
2 parents 6ca0360 + effe33e commit e003980

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ pluggy>=0.12.0
1313
pytest>=4.6.5;python_version<"3"
1414
pytest>=5.2.1;python_version>="3"
1515
pytest-cov>=2.8.1
16-
pytest-forked>=1.0.2
16+
pytest-forked>=1.1.1
1717
pytest-html==1.22.0
1818
pytest-metadata>=1.8.0
1919
pytest-ordering>=0.6

seleniumbase/core/browser_launcher.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
urllib3.disable_warnings()
2222
DRIVER_DIR = os.path.dirname(os.path.realpath(drivers.__file__))
2323
if DRIVER_DIR not in os.environ["PATH"]:
24-
os.environ["PATH"] += os.pathsep + DRIVER_DIR
24+
os.environ["PATH"] = DRIVER_DIR + os.pathsep + os.environ["PATH"]
2525
EXTENSIONS_DIR = os.path.dirname(os.path.realpath(extensions.__file__))
2626
DISABLE_CSP_ZIP_PATH = "%s/%s" % (EXTENSIONS_DIR, "disable_csp.zip")
2727
PROXY_ZIP_PATH = proxy_helper.PROXY_ZIP_PATH

setup.py

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

4646
setup(
4747
name='seleniumbase',
48-
version='1.32.8',
48+
version='1.32.9',
4949
description='Fast, Easy, and Reliable Browser Automation & Testing.',
5050
long_description=long_description,
5151
long_description_content_type='text/markdown',
@@ -96,7 +96,7 @@
9696
'pytest>=4.6.5;python_version<"3"', # For Python 2 compatibility
9797
'pytest>=5.2.1;python_version>="3"',
9898
'pytest-cov>=2.8.1',
99-
'pytest-forked>=1.0.2',
99+
'pytest-forked>=1.1.1',
100100
'pytest-html==1.22.0', # Keep at 1.22.0 unless tested on Windows
101101
'pytest-metadata>=1.8.0',
102102
'pytest-ordering>=0.6',

0 commit comments

Comments
 (0)