Skip to content

Commit 76b6e22

Browse files
committed
Fixes after merge
1 parent c9a5166 commit 76b6e22

4 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/linter.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
"${{ steps.ruff-format.outcome }}" == "failure" || \
6464
"${{ steps.mypy.outcome }}" == "failure" || \
6565
"${{ steps.pyright.outcome }}" == "failure"]]; then
66-
# Disable due to not to block on "PR too large error"
66+
# Disable to not to block on "PR too large error"
6767
# "${{ steps.jscpd.outcome }}" == "failure" ]]; then
6868
echo "One or more linting/checking steps failed."
6969
exit 1

.github/workflows/unit-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
3737
strategy:
3838
matrix:
39-
python-version: ["3.10", "3.13"]
39+
python-version: ['3.10', '3.13']
4040
steps:
4141
- name: Checkout code
4242
uses: actions/checkout@v6
@@ -57,6 +57,6 @@ jobs:
5757
- name: Install dependencies
5858
run: uv sync --locked
5959
- name: Run tests and check coverage
60-
run: uv run pytest --cov=a2a --cov-report term --cov-fail-under=85
60+
run: uv run pytest --cov=a2a --cov-report term --cov-fail-under=88
6161
- name: Show coverage summary in log
6262
run: uv run coverage report

.github/workflows/update-a2a-types.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Set up Python
1818
uses: actions/setup-python@v6
1919
with:
20-
python-version: "3.10"
20+
python-version: '3.10'
2121
- name: Install uv
2222
uses: astral-sh/setup-uv@v7
2323
- name: Configure uv shell
@@ -41,8 +41,8 @@ jobs:
4141
token: ${{ secrets.A2A_BOT_PAT }}
4242
committer: a2a-bot <a2a-bot@google.com>
4343
author: a2a-bot <a2a-bot@google.com>
44-
commit-message: "${{ github.event.client_payload.message }}"
45-
title: "${{ github.event.client_payload.message }}"
44+
commit-message: '${{ github.event.client_payload.message }}'
45+
title: '${{ github.event.client_payload.message }}'
4646
body: |
4747
Commit: https://github.com/a2aproject/A2A/commit/${{ github.event.client_payload.sha }}
4848
branch: auto-update-a2a-types-${{ github.event.client_payload.sha }}

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,8 +170,8 @@ omit = [
170170
"*/tests/*",
171171
"*/site-packages/*",
172172
"*/__init__.py",
173-
"src/a2a/types/a2a_pb2.py",
174-
"src/a2a/types/a2a_pb2_grpc.py",
173+
"src/a2a/types/*_pb2.py",
174+
"src/a2a/types/*_pb2_grpc.py",
175175
]
176176

177177
[tool.coverage.report]

0 commit comments

Comments
 (0)