File tree Expand file tree Collapse file tree 4 files changed +6
-8
lines changed
Expand file tree Collapse file tree 4 files changed +6
-8
lines changed Original file line number Diff line number Diff line change @@ -187,8 +187,7 @@ uv venv --python "python3.11" ".venv" source .venv/bin/activate
187187
188188uv 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
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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]
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments