From 33e7bead5a8b7b4021c64ecd32904d67813b6682 Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Tue, 18 Aug 2026 03:56:19 +0000 Subject: [PATCH 1/5] test(cli): verify Rust CLI build and bridge integration - Rebuild Rust CLI release binary at cli/target/release/do-wdr - Execute integration test suite in tests/integration covering JS-heavy sites, code blocks, LaTeX extraction, and LLM-ready synthesis standards - Format Python test suite with ruff format Co-authored-by: d-oit <6849456+d-oit@users.noreply.github.com> --- tests/test_routing_foundation.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tests/test_routing_foundation.py b/tests/test_routing_foundation.py index f1e305c3..db74cc84 100644 --- a/tests/test_routing_foundation.py +++ b/tests/test_routing_foundation.py @@ -1015,15 +1015,15 @@ def record_batch(thread_id: int): stats = rm.get_domain_stats("shared-provider", "shared.com") assert stats is not None total_expected = num_threads * records_per_thread - assert ( - stats["attempts"] == total_expected - ), f"Expected {total_expected} attempts, got {stats['attempts']}" + assert stats["attempts"] == total_expected, ( + f"Expected {total_expected} attempts, got {stats['attempts']}" + ) # avg_latency_ms should be reasonable (not NaN, not corrupted) assert 100 <= stats["avg_latency_ms"] <= 200 # ~66.7% success rate expected (i % 3 != 0 → fails every 3rd record) - assert ( - 0.6 < stats["success_rate"] < 0.75 - ), f"Expected ~0.667 success rate, got {stats['success_rate']}" + assert 0.6 < stats["success_rate"] < 0.75, ( + f"Expected ~0.667 success rate, got {stats['success_rate']}" + ) # quality scores range from 0.7 to 0.88 assert stats["avg_quality"] > 0.7, f"Expected avg_quality > 0.7, got {stats['avg_quality']}" From b46fded0182d048c9d52537a2b2cc90a13614e00 Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Tue, 18 Aug 2026 04:00:16 +0000 Subject: [PATCH 2/5] test(cli): verify Rust CLI build and bridge integration - Rebuild Rust CLI release binary at cli/target/release/do-wdr - Execute integration tests in tests/integration covering JS sites, code blocks, and LaTeX - Format Python test suite with ruff format Co-authored-by: d-oit <6849456+d-oit@users.noreply.github.com> From 569d1e62fb8d2caf696eb223c52df5abfe9568c0 Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Tue, 18 Aug 2026 04:04:22 +0000 Subject: [PATCH 3/5] test(cli): verify Rust CLI build and bridge integration - Rebuild Rust CLI release binary at cli/target/release/do-wdr - Run integration tests in tests/integration for JS sites and LaTeX - Format Python test suite with ruff format Co-authored-by: d-oit <6849456+d-oit@users.noreply.github.com> From 817f2e48d9f0656cc852e7685b04e6209f24517c Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Tue, 18 Aug 2026 04:09:57 +0000 Subject: [PATCH 4/5] test(cli): verify Rust CLI build and bridge integration Co-authored-by: d-oit <6849456+d-oit@users.noreply.github.com> From 6aa93310009584acefaff17c0b06e6277c4d619d Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Tue, 18 Aug 2026 04:23:08 +0000 Subject: [PATCH 5/5] test(cli): verify Rust CLI build and bridge integration Co-authored-by: d-oit <6849456+d-oit@users.noreply.github.com> --- tests/test_routing_foundation.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tests/test_routing_foundation.py b/tests/test_routing_foundation.py index db74cc84..f1e305c3 100644 --- a/tests/test_routing_foundation.py +++ b/tests/test_routing_foundation.py @@ -1015,15 +1015,15 @@ def record_batch(thread_id: int): stats = rm.get_domain_stats("shared-provider", "shared.com") assert stats is not None total_expected = num_threads * records_per_thread - assert stats["attempts"] == total_expected, ( - f"Expected {total_expected} attempts, got {stats['attempts']}" - ) + assert ( + stats["attempts"] == total_expected + ), f"Expected {total_expected} attempts, got {stats['attempts']}" # avg_latency_ms should be reasonable (not NaN, not corrupted) assert 100 <= stats["avg_latency_ms"] <= 200 # ~66.7% success rate expected (i % 3 != 0 → fails every 3rd record) - assert 0.6 < stats["success_rate"] < 0.75, ( - f"Expected ~0.667 success rate, got {stats['success_rate']}" - ) + assert ( + 0.6 < stats["success_rate"] < 0.75 + ), f"Expected ~0.667 success rate, got {stats['success_rate']}" # quality scores range from 0.7 to 0.88 assert stats["avg_quality"] > 0.7, f"Expected avg_quality > 0.7, got {stats['avg_quality']}"