@@ -962,6 +962,7 @@ jobs:
962
962
if [[ "${{ needs.info.outputs.skip_coverage }}" != "true" ]]; then
963
963
cov_params+=(--cov="homeassistant")
964
964
cov_params+=(--cov-report=xml)
965
+ cov_params+=(--junitxml=junit.xml -o junit_family=legacy)
965
966
fi
966
967
967
968
echo "Test group ${{ matrix.group }}: $(sed -n "${{ matrix.group }},1p" pytest_buckets.txt)"
@@ -992,6 +993,12 @@ jobs:
992
993
name : coverage-${{ matrix.python-version }}-${{ matrix.group }}
993
994
path : coverage.xml
994
995
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
995
1002
- name : Remove pytest_buckets
996
1003
run : rm pytest_buckets.txt
997
1004
- name : Check dirty
@@ -1088,6 +1095,7 @@ jobs:
1088
1095
cov_params+=(--cov="homeassistant.components.recorder")
1089
1096
cov_params+=(--cov-report=xml)
1090
1097
cov_params+=(--cov-report=term-missing)
1098
+ cov_params+=(--junitxml=junit.xml -o junit_family=legacy)
1091
1099
fi
1092
1100
1093
1101
python3 -b -X dev -m pytest \
@@ -1122,6 +1130,13 @@ jobs:
1122
1130
steps.pytest-partial.outputs.mariadb }}
1123
1131
path : coverage.xml
1124
1132
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
1125
1140
- name : Check dirty
1126
1141
run : |
1127
1142
./script/check_dirty
@@ -1218,6 +1233,7 @@ jobs:
1218
1233
cov_params+=(--cov="homeassistant.components.recorder")
1219
1234
cov_params+=(--cov-report=xml)
1220
1235
cov_params+=(--cov-report=term-missing)
1236
+ cov_params+=(--junitxml=junit.xml -o junit_family=legacy)
1221
1237
fi
1222
1238
1223
1239
python3 -b -X dev -m pytest \
@@ -1253,6 +1269,13 @@ jobs:
1253
1269
steps.pytest-partial.outputs.postgresql }}
1254
1270
path : coverage.xml
1255
1271
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
1256
1279
- name : Check dirty
1257
1280
run : |
1258
1281
./script/check_dirty
@@ -1365,6 +1388,7 @@ jobs:
1365
1388
cov_params+=(--cov="homeassistant.components.${{ matrix.group }}")
1366
1389
cov_params+=(--cov-report=xml)
1367
1390
cov_params+=(--cov-report=term-missing)
1391
+ cov_params+=(--junitxml=junit.xml -o junit_family=legacy)
1368
1392
fi
1369
1393
1370
1394
python3 -b -X dev -m pytest \
@@ -1394,6 +1418,12 @@ jobs:
1394
1418
name : coverage-${{ matrix.python-version }}-${{ matrix.group }}
1395
1419
path : coverage.xml
1396
1420
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
1397
1427
- name : Check dirty
1398
1428
run : |
1399
1429
./script/check_dirty
@@ -1419,3 +1449,26 @@ jobs:
1419
1449
with :
1420
1450
fail_ci_if_error : true
1421
1451
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 }}
0 commit comments