Skip to content

Commit f48d15b

Browse files
author
Zdravko
authored
Merge pull request #279 from NativeScript/zbranzov/webdriver
fix: use webdriver manager compatible with python 2.7
2 parents 8609406 + 38274bf commit f48d15b

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

Diff for: requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ pytesseract>=0.2.5
1212
flake8>=3.6.0
1313
pylint>=1.9.4
1414
selenium>=3.141.0
15-
webdriver_manager>=1.7
15+
webdriver_manager==1.8
1616
subprocess32>=3.5.3
1717
requests>=2.21.0
1818
pytz>=2018.9

Diff for: requirements_darwin.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ pytesseract>=0.2.5
1212
flake8>=3.6.0
1313
pylint>=1.9.4
1414
selenium>=3.141.0
15-
webdriver_manager>=1.7
15+
webdriver_manager==1.8
1616
atomac>=1.1.0
1717
PyObjC>=5.1.1
1818
subprocess32>=3.5.3

Diff for: run_samples.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,6 @@
1010
Log.info("Running tests...")
1111
arguments = ['nosetests', '-v', '-s', '--nologcapture', '--logging-filter=nose', '--with-xunit', '--with-flaky']
1212
for i in sys.argv:
13-
arguments.append(str(i))
13+
if "samples=" not in i:
14+
arguments.append(str(i))
1415
nose.run(argv=arguments)

0 commit comments

Comments
 (0)