We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c539eb commit eca429aCopy full SHA for eca429a
.github/workflows/build_test.yml
@@ -490,14 +490,14 @@ jobs:
490
# Collect all JUnit XML files with unique names
491
junit_files = list(src_dir.glob("**/junit*.xml"))
492
print(f"Found {len(junit_files)} JUnit XML files")
493
-
+
494
for src_file in junit_files:
495
artifact_name = src_file.parent.name
496
original_name = src_file.name
497
dst_file = dst_dir / f"{artifact_name}_{original_name}"
498
print(f"Copying {src_file} to {dst_file}")
499
shutil.copy(str(src_file), str(dst_file))
500
501
if not junit_files:
502
print("WARNING: No JUnit XML files found - this indicates test result generation issues")'
503
- name: Combine coverages
0 commit comments