Skip to content

Commit edd918d

Browse files
DEBUG: fix merge
1 parent 8605220 commit edd918d

File tree

1 file changed

+42
-0
lines changed

1 file changed

+42
-0
lines changed

.github/workflows/build_test.yml

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,16 @@ name: Build and Test
22

33
on:
44
push:
5+
<<<<<<< HEAD
56
branches:
67
- master
78
- main
89
- dev/aio-connector
910
tags:
1011
- v*
12+
=======
13+
14+
>>>>>>> b9198320 (DEBUG: fix merge)
1115
pull_request:
1216
branches:
1317
- master
@@ -306,6 +310,15 @@ jobs:
306310
# path: |
307311
# .coverage
308312
# 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)
309322

310323
# test-lambda:
311324
# name: Test Lambda linux-${{ matrix.python-version }}-${{ matrix.cloud-provider }}
@@ -476,8 +489,28 @@ jobs:
476489
# dst_dir.mkdir()
477490
# for src_file in src_dir.glob("*/.coverage"):
478491
# dst_file = dst_dir / ".coverage.{}".format(src_file.parent.name[9:])
492+
<<<<<<< HEAD
479493
# print("{} copy to {}".format(src_file, dst_file))
480494
# 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)
481514
# - name: Combine coverages
482515
# run: python -m tox run -e coverage
483516
# - name: Publish html coverage
@@ -496,3 +529,12 @@ jobs:
496529
# with:
497530
# files: .tox/coverage.xml
498531
# 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

Comments
 (0)