Skip to content

Commit eca429a

Browse files
committed
linting change
1 parent 7c539eb commit eca429a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build_test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -490,14 +490,14 @@ jobs:
490490
# Collect all JUnit XML files with unique names
491491
junit_files = list(src_dir.glob("**/junit*.xml"))
492492
print(f"Found {len(junit_files)} JUnit XML files")
493-
493+
494494
for src_file in junit_files:
495495
artifact_name = src_file.parent.name
496496
original_name = src_file.name
497497
dst_file = dst_dir / f"{artifact_name}_{original_name}"
498498
print(f"Copying {src_file} to {dst_file}")
499499
shutil.copy(str(src_file), str(dst_file))
500-
500+
501501
if not junit_files:
502502
print("WARNING: No JUnit XML files found - this indicates test result generation issues")'
503503
- name: Combine coverages

0 commit comments

Comments
 (0)