Skip to content

Commit 50cec42

Browse files
authored
Upload test results to codecov (home-assistant#138512)
* Upload test results to codecov * Upload tests results in single job
1 parent 23dac39 commit 50cec42

File tree

2 files changed

+54
-0
lines changed

2 files changed

+54
-0
lines changed

.github/workflows/ci.yaml

+53
Original file line numberDiff line numberDiff line change
@@ -962,6 +962,7 @@ jobs:
962962
if [[ "${{ needs.info.outputs.skip_coverage }}" != "true" ]]; then
963963
cov_params+=(--cov="homeassistant")
964964
cov_params+=(--cov-report=xml)
965+
cov_params+=(--junitxml=junit.xml -o junit_family=legacy)
965966
fi
966967
967968
echo "Test group ${{ matrix.group }}: $(sed -n "${{ matrix.group }},1p" pytest_buckets.txt)"
@@ -992,6 +993,12 @@ jobs:
992993
name: coverage-${{ matrix.python-version }}-${{ matrix.group }}
993994
path: coverage.xml
994995
overwrite: true
996+
- name: Upload test results artifact
997+
if: needs.info.outputs.skip_coverage != 'true'
998+
uses: actions/upload-artifact@v4.6.0
999+
with:
1000+
name: test-results-full-${{ matrix.python-version }}-${{ matrix.group }}
1001+
path: junit.xml
9951002
- name: Remove pytest_buckets
9961003
run: rm pytest_buckets.txt
9971004
- name: Check dirty
@@ -1088,6 +1095,7 @@ jobs:
10881095
cov_params+=(--cov="homeassistant.components.recorder")
10891096
cov_params+=(--cov-report=xml)
10901097
cov_params+=(--cov-report=term-missing)
1098+
cov_params+=(--junitxml=junit.xml -o junit_family=legacy)
10911099
fi
10921100
10931101
python3 -b -X dev -m pytest \
@@ -1122,6 +1130,13 @@ jobs:
11221130
steps.pytest-partial.outputs.mariadb }}
11231131
path: coverage.xml
11241132
overwrite: true
1133+
- name: Upload test results artifact
1134+
if: needs.info.outputs.skip_coverage != 'true'
1135+
uses: actions/upload-artifact@v4.6.0
1136+
with:
1137+
name: test-results-mariadb-${{ matrix.python-version }}-${{
1138+
steps.pytest-partial.outputs.mariadb }}
1139+
path: junit.xml
11251140
- name: Check dirty
11261141
run: |
11271142
./script/check_dirty
@@ -1218,6 +1233,7 @@ jobs:
12181233
cov_params+=(--cov="homeassistant.components.recorder")
12191234
cov_params+=(--cov-report=xml)
12201235
cov_params+=(--cov-report=term-missing)
1236+
cov_params+=(--junitxml=junit.xml -o junit_family=legacy)
12211237
fi
12221238
12231239
python3 -b -X dev -m pytest \
@@ -1253,6 +1269,13 @@ jobs:
12531269
steps.pytest-partial.outputs.postgresql }}
12541270
path: coverage.xml
12551271
overwrite: true
1272+
- name: Upload test results artifact
1273+
if: needs.info.outputs.skip_coverage != 'true'
1274+
uses: actions/upload-artifact@v4.6.0
1275+
with:
1276+
name: test-results-postgres-${{ matrix.python-version }}-${{
1277+
steps.pytest-partial.outputs.postgresql }}
1278+
path: junit.xml
12561279
- name: Check dirty
12571280
run: |
12581281
./script/check_dirty
@@ -1365,6 +1388,7 @@ jobs:
13651388
cov_params+=(--cov="homeassistant.components.${{ matrix.group }}")
13661389
cov_params+=(--cov-report=xml)
13671390
cov_params+=(--cov-report=term-missing)
1391+
cov_params+=(--junitxml=junit.xml -o junit_family=legacy)
13681392
fi
13691393
13701394
python3 -b -X dev -m pytest \
@@ -1394,6 +1418,12 @@ jobs:
13941418
name: coverage-${{ matrix.python-version }}-${{ matrix.group }}
13951419
path: coverage.xml
13961420
overwrite: true
1421+
- name: Upload test results artifact
1422+
if: needs.info.outputs.skip_coverage != 'true'
1423+
uses: actions/upload-artifact@v4.6.0
1424+
with:
1425+
name: test-results-partial-${{ matrix.python-version }}-${{ matrix.group }}
1426+
path: junit.xml
13971427
- name: Check dirty
13981428
run: |
13991429
./script/check_dirty
@@ -1419,3 +1449,26 @@ jobs:
14191449
with:
14201450
fail_ci_if_error: true
14211451
token: ${{ secrets.CODECOV_TOKEN }}
1452+
1453+
upload-test-results:
1454+
name: Upload test results to Codecov
1455+
if: needs.info.outputs.skip_coverage != 'true' && !cancelled()
1456+
runs-on: ubuntu-24.04
1457+
needs:
1458+
- info
1459+
- pytest-partial
1460+
- pytest-full
1461+
- pytest-postgres
1462+
- pytest-mariadb
1463+
timeout-minutes: 10
1464+
steps:
1465+
- name: Download all coverage artifacts
1466+
uses: actions/download-artifact@v4.1.8
1467+
with:
1468+
pattern: test-results-*
1469+
- name: Upload test results to Codecov
1470+
uses: codecov/test-results-action@v1
1471+
with:
1472+
fail_ci_if_error: true
1473+
verbose: true
1474+
token: ${{ secrets.CODECOV_TOKEN }}

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ test-reports/
6969
test-results.xml
7070
test-output.xml
7171
pytest-*.txt
72+
junit.xml
7273

7374
# Translations
7475
*.mo

0 commit comments

Comments
 (0)