From 220d39c1527588070707bce9ed09a1d258631cce Mon Sep 17 00:00:00 2001 From: ShaharNaveh <50263213+ShaharNaveh@users.noreply.github.com> Date: Sun, 19 Oct 2025 18:55:04 +0300 Subject: [PATCH 1/3] Update `vcpkg` to 2025.09.17 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 4412fb9354..ab055f6a36 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -90,7 +90,7 @@ lto = "thin" git = "https://github.com/microsoft/vcpkg" # The revision of the vcpkg repository to use # https://github.com/microsoft/vcpkg/tags -rev = "2024.02.14" +rev = "2025.09.17" [package.metadata.vcpkg.target] x86_64-pc-windows-msvc = { triplet = "x64-windows-static-md", dev-dependencies = ["openssl" ] } From bc778ec909ae920ee2d74b813fe63a145af0924b Mon Sep 17 00:00:00 2001 From: ShaharNaveh <50263213+ShaharNaveh@users.noreply.github.com> Date: Sun, 19 Oct 2025 20:33:18 +0300 Subject: [PATCH 2/3] Pin selenium version --- wasm/tests/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wasm/tests/requirements.txt b/wasm/tests/requirements.txt index 52dc203912..a474c5f74b 100644 --- a/wasm/tests/requirements.txt +++ b/wasm/tests/requirements.txt @@ -1,3 +1,3 @@ pytest -selenium +selenium==4.36.0 certifi From ef4f4c00d7b56d224d4edec5e403005e3726f083 Mon Sep 17 00:00:00 2001 From: ShaharNaveh <50263213+ShaharNaveh@users.noreply.github.com> Date: Mon, 20 Oct 2025 11:55:31 +0300 Subject: [PATCH 3/3] Use `localhost` instead of `0.0.0.0` --- wasm/tests/conftest.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wasm/tests/conftest.py b/wasm/tests/conftest.py index 84a2530575..e01f5eddc5 100644 --- a/wasm/tests/conftest.py +++ b/wasm/tests/conftest.py @@ -41,7 +41,7 @@ def pytest_sessionfinish(session): # From https://gist.github.com/butla/2d9a4c0f35ea47b7452156c96a4e7b12 -def wait_for_port(port, host="0.0.0.0", timeout=5.0): +def wait_for_port(port, host="localhost", timeout=5.0): """Wait until a port starts accepting TCP connections. Args: port (int): Port number. @@ -94,7 +94,7 @@ def wdriver(request): options.add_argument("-headless") driver = Driver(options=options) try: - driver.get(f"http://0.0.0.0:{PORT}") + driver.get(f"http://localhost:{PORT}") WebDriverWait(driver, 5).until( EC.presence_of_element_located((By.ID, "rp_loaded")) )