Skip to content

Commit 9a5d5d6

Browse files
authored
* Update `vcpkg` to 2025.09.17 * Pin selenium version * Use `localhost` instead of `0.0.0.0`
1 parent 3473d82 commit 9a5d5d6

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ lto = "thin"
9090
git = "https://github.com/microsoft/vcpkg"
9191
# The revision of the vcpkg repository to use
9292
# https://github.com/microsoft/vcpkg/tags
93-
rev = "2024.02.14"
93+
rev = "2025.09.17"
9494

9595
[package.metadata.vcpkg.target]
9696
x86_64-pc-windows-msvc = { triplet = "x64-windows-static-md", dev-dependencies = ["openssl" ] }

wasm/tests/conftest.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def pytest_sessionfinish(session):
4141

4242

4343
# From https://gist.github.com/butla/2d9a4c0f35ea47b7452156c96a4e7b12
44-
def wait_for_port(port, host="0.0.0.0", timeout=5.0):
44+
def wait_for_port(port, host="localhost", timeout=5.0):
4545
"""Wait until a port starts accepting TCP connections.
4646
Args:
4747
port (int): Port number.
@@ -94,7 +94,7 @@ def wdriver(request):
9494
options.add_argument("-headless")
9595
driver = Driver(options=options)
9696
try:
97-
driver.get(f"http://0.0.0.0:{PORT}")
97+
driver.get(f"http://localhost:{PORT}")
9898
WebDriverWait(driver, 5).until(
9999
EC.presence_of_element_located((By.ID, "rp_loaded"))
100100
)

wasm/tests/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
pytest
2-
selenium
2+
selenium==4.36.0
33
certifi

0 commit comments

Comments
 (0)