We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 383214a commit a5ac827Copy full SHA for a5ac827
.github/workflows/qa.yaml
@@ -268,13 +268,19 @@ jobs:
268
# Generate the Cobertura report for C
269
gcovr --cobertura "${cov_dir}/Cobertura_C.xml" "${raw_cov_dir}"
270
271
+ # TMP_DEBUG: List generated files:
272
+ ls -l "${cov_dir}"
273
+
274
# Merge Cobertura reports into a single one
275
reportgenerator -reports:"${cov_dir}/Cobertura.xml;${cov_dir}/Cobertura_C.xml" \
276
-targetdir:"${codecov_dir}" -reporttypes:Cobertura
277
278
# Store the coverage directory for the next steps
279
echo COVERAGE_DIR="${codecov_dir}" >> ${GITHUB_ENV}
280
281
+ # TMP_DEBUG: List final Cobertura file with the merged coverage:
282
+ ls -l "${codecov_dir}"
283
284
- name: Run tests (with race detector)
285
if: matrix.test == 'race'
286
env:
0 commit comments