Skip to content

Commit 172dbed

Browse files
authored
Merge branch 'main' into fix/fastapi-resume-4100
2 parents b6d2526 + 4000c02 commit 172dbed

File tree

4 files changed

+6
-8
lines changed

4 files changed

+6
-8
lines changed

AGENTS.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -187,8 +187,7 @@ uv venv --python "python3.11" ".venv" source .venv/bin/activate
187187

188188
uv sync --all-extras ```
189189

190-
**Minimal setup for testing only (matches CI):** `bash uv sync --extra test
191-
--extra eval --extra a2a`
190+
**Minimal setup for testing only (matches CI):** `bash uv sync --extra test`
192191

193192
**Virtual Environment Usage (Required):** - **Always use** `.venv/bin/python` or
194193
`.venv/bin/pytest` directly - **Or activate** with `source .venv/bin/activate`
@@ -363,7 +362,7 @@ catching issues with the public API.
363362
**Quick start:** Run all tests with: `bash pytest tests/unittests`
364363

365364
**Recommended:** Match CI configuration before submitting PRs: `bash uv sync
366-
--extra test --extra eval --extra a2a && pytest tests/unittests`
365+
--extra test && pytest tests/unittests`
367366

368367
**Additional options:** ```bash
369368

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -180,11 +180,11 @@ part before or alongside your code PR.
180180
pytest ./tests/unittests
181181
```
182182

183-
NOTE: for accurate repro of test failure, only include `test`, `eval` and
184-
`a2a` as extra dependencies.
183+
NOTE: for accurate repro of test failure, only include `test` as extra
184+
dependencies.
185185

186186
```shell
187-
uv sync --extra test --extra eval --extra a2a
187+
uv sync --extra test
188188
pytest ./tests/unittests
189189
```
190190

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,6 @@ eval = [
111111
"google-cloud-aiplatform[evaluation]>=1.100.0",
112112
"pandas>=2.2.3",
113113
"rouge-score>=0.1.2",
114-
"scipy<1.16; python_version<'3.11'",
115114
"tabulate>=0.9.0",
116115
# go/keep-sorted end
117116
]

scripts/unittests.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ for version in "${versions_to_run[@]}"; do
9494

9595
# 3. perform the unit tests
9696
echo "Setting up test environment in .unittest_venv..."
97-
uv sync --extra test --extra eval --extra a2a --active
97+
uv sync --extra test --active
9898

9999
echo "Running unit tests..."
100100
TEST_EXIT_CODE=0

0 commit comments

Comments
 (0)