We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8d0171a + d4a2614 commit 35586adCopy full SHA for 35586ad
2 files changed
.github/workflows/unit-tests.yaml
@@ -31,7 +31,7 @@ jobs:
31
uv venv .venv
32
source .venv/bin/activate
33
# Install dependencies as recommended in CONTRIBUTING.md
34
- uv sync --extra test --extra eval --extra a2a
+ uv sync --extra test
35
36
- name: Run unit tests with pytest
37
run: |
pyproject.toml
@@ -39,6 +39,12 @@ repository = "https://github.com/google/adk-python-community"
39
changelog = "https://github.com/google/adk-python-community/blob/main/CHANGELOG.md"
40
documentation = "https://google.github.io/adk-docs/"
41
42
+[project.optional-dependencies]
43
+test = [
44
+ "pytest>=8.4.2",
45
+ "pytest-asyncio>=1.2.0",
46
+]
47
+
48
49
[tool.pyink]
50
# Format py files following Google style-guide
0 commit comments