Skip to content

Commit a1fdbd9

Browse files
lspinheirolpinheiroms
andauthoredJan 17, 2025··
Use caching to run tests and report coverage (#5086)
* use caching to run tests and report coverage * fix test step dep name * try to fix cov fname * add working dir to mv step * update artifact download * fmt * reduce concurrency on ext test --------- Co-authored-by: Leonardo Pinheiro <[email protected]>
1 parent ce20de9 commit a1fdbd9

File tree

10 files changed

+31
-46
lines changed

10 files changed

+31
-46
lines changed
 

‎.github/workflows/checks.yml

+25-23
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,7 @@ jobs:
132132
- name: Run uv sync
133133
run: |
134134
uv sync --locked --all-extras
135+
echo "PKG_NAME=$(basename '${{ matrix.package }}')" >> $GITHUB_ENV
135136
136137
working-directory: ./python
137138
- name: Run task
@@ -140,8 +141,20 @@ jobs:
140141
poe --directory ${{ matrix.package }} test
141142
working-directory: ./python
142143

144+
- name: Move coverage file
145+
run: |
146+
mv ${{ matrix.package }}/coverage.xml coverage_${{ env.PKG_NAME }}.xml
147+
working-directory: ./python
148+
149+
- name: Upload coverage artifact
150+
uses: actions/upload-artifact@v4
151+
with:
152+
name: coverage-${{ env.PKG_NAME }}
153+
path: ./python/coverage_${{ env.PKG_NAME }}.xml
154+
143155
codecov:
144156
runs-on: ubuntu-latest
157+
needs: [test]
145158
strategy:
146159
matrix:
147160
package:
@@ -153,31 +166,20 @@ jobs:
153166
]
154167
steps:
155168
- uses: actions/checkout@v4
156-
- uses: astral-sh/setup-uv@v5
157-
with:
158-
enable-cache: true
159-
version: "0.5.18"
160-
- uses: actions/setup-python@v5
161-
with:
162-
python-version: "3.11"
163-
- name: Run uv sync
169+
- name: Set up environment
164170
run: |
165-
uv sync --locked --all-extras
166-
167-
working-directory: ./python
168-
- name: Run task
169-
run: |
170-
source ${{ github.workspace }}/python/.venv/bin/activate
171-
poe --directory ${{ matrix.package }} coverage
172-
working-directory: ./python
173-
- name: Upload coverage
174-
uses: codecov/codecov-action@v5
171+
echo "PKG_NAME=$(basename '${{ matrix.package }}')" >> $GITHUB_ENV
172+
- uses: actions/checkout@v4
173+
- uses: actions/download-artifact@v4
174+
with:
175+
name: coverage-${{ env.PKG_NAME }}
176+
path: ./
177+
- uses: codecov/codecov-action@v5
175178
with:
176-
fail_ci_if_error: true # optional (default = false)
177-
files: ${{ matrix.package }}/coverage.xml # optional
178-
flags: unittests # optional
179-
name: codecov-umbrella # optional
180-
verbose: true # optional (default = false)
179+
files: coverage_${{ env.PKG_NAME }}.xml
180+
flags: unittests
181+
name: codecov-umbrella
182+
fail_ci_if_error: true
181183
token: ${{ secrets.CODECOV_TOKEN }}
182184

183185
docs:

‎python/packages/autogen-agentchat/pyproject.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,4 @@ testpaths = ["tests"]
3535
include = "../../shared_tasks.toml"
3636

3737
[tool.poe.tasks]
38-
test = "pytest -n auto"
39-
coverage = "pytest -n auto --cov=src --cov-report=term-missing --cov-report=xml"
38+
test = "pytest -n auto --cov=src --cov-report=term-missing --cov-report=xml"

‎python/packages/autogen-core/pyproject.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,7 @@ mypy = [
106106
include = "../../shared_tasks.toml"
107107

108108
[tool.poe.tasks]
109-
test = "pytest -n auto"
110-
coverage = "pytest -n auto --cov=src --cov-report=term-missing --cov-report=xml"
109+
test = "pytest -n auto --cov=src --cov-report=term-missing --cov-report=xml"
111110
mypy.default_item_type = "cmd"
112111
mypy.sequence = [
113112
"mypy --config-file ../../pyproject.toml --exclude src/autogen_core/application/protos --exclude tests/protos src tests",

‎python/packages/autogen-ext/pyproject.toml

+1-6
Original file line numberDiff line numberDiff line change
@@ -87,14 +87,9 @@ include = "../../shared_tasks.toml"
8787
[tool.poe.tasks]
8888
test.sequence = [
8989
"playwright install",
90-
"pytest -n auto",
90+
"pytest -n 1 --cov=src --cov-report=term-missing --cov-report=xml",
9191
]
9292
test.default_item_type = "cmd"
93-
coverage.sequence = [
94-
"playwright install",
95-
"pytest -n auto --cov=src --cov-report=term-missing --cov-report=xml",
96-
]
97-
coverage.default_item_type = "cmd"
9893
mypy = "mypy --config-file ../../pyproject.toml --exclude src/autogen_ext/runtimes/grpc/protos --exclude tests/protos src tests"
9994

10095
[tool.mypy]

‎python/packages/autogen-magentic-one/pyproject.toml

+1-6
Original file line numberDiff line numberDiff line change
@@ -54,15 +54,10 @@ include = "../../shared_tasks.toml"
5454

5555
[tool.poe.tasks]
5656
test.sequence = [
57-
"playwright install",
58-
"pytest -n auto",
59-
]
60-
test.default_item_type = "cmd"
61-
coverage.sequence = [
6257
"playwright install",
6358
"pytest -n auto --cov=src --cov-report=term-missing --cov-report=xml",
6459
]
65-
coverage.default_item_type = "cmd"
60+
test.default_item_type = "cmd"
6661

6762
[tool.ruff]
6863
extend = "../../pyproject.toml"

‎python/packages/autogen-studio/pyproject.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -88,5 +88,4 @@ ignore = ["B008"]
8888
fmt = "ruff format"
8989
format.ref = "fmt"
9090
lint = "ruff check"
91-
test = "pytest -n 0"
92-
coverage = "pytest -n 0 --cov=autogenstudio --cov-report=term-missing"
91+
test = "pytest -n 0 --cov=autogenstudio --cov-report=term-missing"

‎python/packages/autogen-test-utils/pyproject.toml

-1
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,3 @@ include = "../../shared_tasks.toml"
2727
[tool.poe.tasks]
2828
mypy = "mypy --config-file $POE_ROOT/../../pyproject.toml src"
2929
test = "true"
30-
coverage = "true"

‎python/packages/component-schema-gen/pyproject.toml

-1
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,3 @@ include = "../../shared_tasks.toml"
3939
[tool.poe.tasks]
4040
mypy = "mypy --config-file $POE_ROOT/../../pyproject.toml src"
4141
test = "true"
42-
coverage = "true"

‎python/packages/magentic-one-cli/pyproject.toml

-1
Original file line numberDiff line numberDiff line change
@@ -44,4 +44,3 @@ include = "../../shared_tasks.toml"
4444
[tool.poe.tasks]
4545
mypy = "mypy --config-file $POE_ROOT/../../pyproject.toml src"
4646
test = "true"
47-
coverage = "true"

‎python/pyproject.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -90,11 +90,10 @@ lint = "python run_task_in_pkgs_if_exist.py lint"
9090
pyright = "python run_task_in_pkgs_if_exist.py pyright"
9191
mypy = "python run_task_in_pkgs_if_exist.py mypy"
9292
test = "python run_task_in_pkgs_if_exist.py test"
93-
coverage = "python run_task_in_pkgs_if_exist.py coverage"
9493
markdown-code-lint = """python check_md_code_blocks.py ../README.md ./packages/autogen-core/docs/src/**/*.md"""
9594
samples-code-check = """pyright ./samples"""
9695

97-
check = ["fmt", "lint", "pyright", "mypy", "coverage", "markdown-code-lint", "samples-code-check"]
96+
check = ["fmt", "lint", "pyright", "mypy", "test", "markdown-code-lint", "samples-code-check"]
9897

9998
gen-proto = "python -m grpc_tools.protoc --python_out=./packages/autogen-ext/src/autogen_ext/runtimes/grpc/protos --grpc_python_out=./packages/autogen-ext/src/autogen_ext/runtimes/grpc/protos --mypy_out=./packages/autogen-ext/src/autogen_ext/runtimes/grpc/protos --mypy_grpc_out=./packages/autogen-ext/src/autogen_ext/runtimes/grpc/protos --proto_path ../protos/ agent_worker.proto --proto_path ../protos/ cloudevent.proto"
10099

0 commit comments

Comments
 (0)
Please sign in to comment.