Skip to content

Commit 44532ab

Browse files
committed
[py] run remote tests in test-remote
1 parent ee708e6 commit 44532ab

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

py/BUILD.bazel

+1
Original file line numberDiff line numberDiff line change
@@ -444,6 +444,7 @@ py_test_suite(
444444
size = "large",
445445
srcs = glob([
446446
"test/selenium/webdriver/common/**/*.py",
447+
"test/selenium/webdriver/remote/**/*.py",
447448
"test/selenium/webdriver/support/**/*.py",
448449
]),
449450
args = [

py/conftest.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ def wait_for_server(url, timeout):
258258
"--selenium-manager",
259259
"true",
260260
"--enable-managed-downloads",
261-
"true"
261+
"true",
262262
]
263263
)
264264
print(f"Selenium server running as process: {process.pid}")

py/test/selenium/webdriver/remote/remote_downloads_tests.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def test_download_file(driver, pages):
4545
file_byte_data = base64.b64decode(file_contents)
4646
zip_memory = io.BytesIO(file_byte_data)
4747

48-
with zipfile.ZipFile(zip_memory, 'r') as zip_ref:
48+
with zipfile.ZipFile(zip_memory, "r") as zip_ref:
4949
for name in zip_ref.namelist():
5050
with zip_ref.open(name) as file:
5151
file_content = file.read()

0 commit comments

Comments
 (0)