Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -281,6 +281,8 @@ nextest-install:
# Ensure cargo-llvm-cov is available for local Rust coverage runs
[unix]
llvm-cov-install:
@echo "Ensuring llvm-tools-preview Rust component..."
vx rustup component add llvm-tools-preview
@if vx cargo llvm-cov --version >/dev/null 2>&1; then \
echo "cargo-llvm-cov already available"; \
else \
Expand Down
4 changes: 3 additions & 1 deletion tests/test_gallery_cdp.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,9 @@
STARTUP_TIMEOUT = 120 # Gallery startup timeout (WebView2 cold-start on CI can be slow)
API_TIMEOUT = 60 # API call timeout (some DCC samples need more time)
EXAMPLE_RUN_TIMEOUT = 2 # Example run duration (reduced for faster tests)
LOADING_TIMEOUT = 50 # Loading screen timeout before force-navigate (must be < _wait_for_ready timeout)
LOADING_TIMEOUT = (
50 # Loading screen timeout before force-navigate (must be < _wait_for_ready timeout)
)


@dataclass
Expand Down
Loading