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
12 changes: 6 additions & 6 deletions reviewer/requirements-ci-hashes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -240,9 +240,9 @@ httpcore==1.0.9 \
--hash=sha256:2d400746a40668fc9dec9810239072b40b4484b640a8c38fd654a024c7a1bf55 \
--hash=sha256:6e34463af53fd2ab5d807f399a9b45ea31c3dfa2276f15a2c3f00afff6e176e8
# via httpx
httpcore2==2.5.0 \
--hash=sha256:5ce35188de461d31e8d000bfb8ef8bf22c6c16587a211e5571deaa5e9bdf842a \
--hash=sha256:88aa170137c17328d5ac44234f9fd10706466d5fb347f3edac4d39b91137b09d
httpcore2==2.12.0 \
--hash=sha256:7e04258ce01013d7d615e5b910a3b27fac937d7a95038227e79652b4ba3b4ceb \
--hash=sha256:9293522bba0aa7c4c8e9e3f040c16575bd8868e155a77fa30c7a9085a5eae648
# via httpx2
httpx==0.28.1 \
--hash=sha256:75e98c5f16b0f35b567856f597f06ff2270a374470a5c2392242528e3e3e42fc \
Expand All @@ -251,9 +251,9 @@ httpx==0.28.1 \
# openai
# pydantic-ai-slim
# pydantic-graph
httpx2==2.5.0 \
--hash=sha256:3d2d4d9cf4b61f1a1f46a95947cfdb47e80cb56a2f91c6256ac8f58e4891df41 \
--hash=sha256:e2df9cb4611021527ff8a675b1c320b610a2ec397acc8d6fe6e91df2d9b33c29
httpx2==2.12.0 \
--hash=sha256:7631fe9887a8a2275f4a2540e053aa670fcc50742864a9ae7c66e609fdcf12cf \
--hash=sha256:cc8b6eecb8661c146b8f89a60e97456ee086e91a784ed31ac450c3a9e613dd36
# via genai-prices
idna==3.18 \
--hash=sha256:7f952cbe720b688055e3f87de14f5c3e5fdaa8bc3928985c4077ca689de849a2 \
Expand Down
11 changes: 10 additions & 1 deletion reviewer/tests/test_build_backend_editable.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,15 @@ def test_clean_editable_install_imports_reviewer_and_canonical_core(tmp_path: Pa
capture_output=True,
text=True,
)
dependency_check = subprocess.run(
[str(python), "-m", "pip", "check"],
cwd=tmp_path,
env=env,
check=False,
capture_output=True,
text=True,
)
assert dependency_check.returncode == 0, dependency_check.stdout + dependency_check.stderr
completed = subprocess.run(
[
str(python),
Expand Down Expand Up @@ -108,4 +117,4 @@ def test_reviewer_ci_proves_an_isolated_editable_install_with_locked_dependencie
assert "-e" in editable_tokens
assert editable_tokens[editable_tokens.index("-e") + 1] == "."
assert "--system-site-packages" not in editable_tokens
assert "--no-build-isolation" not in editable_tokens
assert "--no-build-isolation" not in editable_tokens
Loading