@@ -2,12 +2,16 @@ name: Build and Test
2
2
3
3
on :
4
4
push :
5
+ <<<<<<< HEAD
5
6
branches :
6
7
- master
7
8
- main
8
9
- dev/aio-connector
9
10
tags :
10
11
- v*
12
+ =======
13
+
14
+ >>>>>>> b9198320 (DEBUG: fix merge)
11
15
pull_request :
12
16
branches :
13
17
- master
@@ -306,6 +310,15 @@ jobs:
306
310
# path: |
307
311
# .coverage
308
312
# coverage.xml
313
+ <<<<<<< HEAD
314
+ =======
315
+ # - uses: actions/upload-artifact@v4
316
+ # with:
317
+ # include-hidden-files: true
318
+ # name: junit_linux-fips-3.9-${{ matrix.cloud-provider }}
319
+ # path: |
320
+ # junit.*.xml
321
+ >>>>>>> b9198320 (DEBUG: fix merge)
309
322
310
323
# test-lambda:
311
324
# name: Test Lambda linux-${{ matrix.python-version }}-${{ matrix.cloud-provider }}
@@ -476,8 +489,28 @@ jobs:
476
489
# dst_dir.mkdir()
477
490
# for src_file in src_dir.glob("*/.coverage"):
478
491
# dst_file = dst_dir / ".coverage.{}".format(src_file.parent.name[9:])
492
+ <<<<<<< HEAD
479
493
# print("{} copy to {}".format(src_file, dst_file))
480
494
# shutil.copy(str(src_file), str(dst_file))'
495
+ =======
496
+ # print("{} copy to {}".format(src_file, dst_file))
497
+ # shutil.copy(str(src_file), str(dst_file))'
498
+ # - name: Collect all JUnit XML files to one dir
499
+ # run: |
500
+ # python -c '
501
+ # from pathlib import Path
502
+ # import shutil
503
+
504
+ # src_dir = Path("artifacts")
505
+ # dst_dir = Path(".") / "junit_results"
506
+ # dst_dir.mkdir()
507
+ # # Collect all JUnit XML files with different naming patterns
508
+ # for pattern in ["*/junit.*.xml", "*/junit.py*-lambda-ci-dev.xml"]:
509
+ # for src_file in src_dir.glob(pattern):
510
+ # dst_file = dst_dir / src_file.name
511
+ # print("{} copy to {}".format(src_file, dst_file))
512
+ # shutil.copy(str(src_file), str(dst_file))'
513
+ >>>>>>> b9198320 (DEBUG: fix merge)
481
514
# - name: Combine coverages
482
515
# run: python -m tox run -e coverage
483
516
# - name: Publish html coverage
@@ -496,3 +529,12 @@ jobs:
496
529
# with:
497
530
# files: .tox/coverage.xml
498
531
# token: ${{ secrets.CODECOV_TOKEN }}
532
+ <<<<<<< HEAD
533
+ =======
534
+ # - name: Upload test results to Codecov
535
+ # if: ${{ !cancelled() }}
536
+ # uses: codecov/test-results-action@v1
537
+ # with:
538
+ # token: ${{ secrets.CODECOV_TOKEN }}
539
+ # files: junit_results/junit.*.xml
540
+ >>>>>>> b9198320 (DEBUG: fix merge)
0 commit comments