Skip to content

Commit bd2d973

Browse files
authored
fix: correct bucket name (#184)
* fix: correct bucket name * chore: oops * fix: make upload coverage execute before sonar * feat: revert order change * feat: adjust coverage config * chore: i don't think we need to do this now.
1 parent 6558ad8 commit bd2d973

File tree

1 file changed

+31
-29
lines changed

1 file changed

+31
-29
lines changed

.github/workflows/ci.yml

+31-29
Original file line numberDiff line numberDiff line change
@@ -126,32 +126,34 @@ jobs:
126126
docs/_build/html
127127
.pr_number
128128
129-
upload-test-coverage:
130-
runs-on: ubuntu-latest
131-
needs:
132-
- test
133-
steps:
134-
- uses: actions/checkout@v4
135-
- uses: actions/setup-python@v5
136-
with:
137-
python-version: "3.12"
138-
139-
- name: Download Artifacts
140-
uses: actions/download-artifact@v4
141-
with:
142-
name: coverage-xml
143-
144-
- name: Combine coverage files
145-
run: |
146-
python -Im pip install coverage covdefaults
147-
python -Im coverage combine
148-
python -Im coverage xml -i
149-
150-
- name: Fix coverage file name
151-
run: sed -i "s/home\/runner\/work\/advanced-alchemy\/advanced-alchemy/github\/workspace/g" coverage.xml
152-
153-
- name: Upload coverage reports to Codecov
154-
uses: codecov/codecov-action@v4
155-
with:
156-
files: coverage.xml
157-
token: ${{ secrets.CODECOV_TOKEN }}
129+
# upload-test-coverage:
130+
# runs-on: ubuntu-latest
131+
# needs:
132+
# - test
133+
# steps:
134+
# - uses: actions/checkout@v4
135+
# - uses: actions/setup-python@v5
136+
# with:
137+
# python-version: "3.12"
138+
139+
# - name: Download Artifacts
140+
# uses: actions/download-artifact@v4
141+
# with:
142+
# name: coverage-xml
143+
# path: coverage.xml
144+
# merge-multiple: true
145+
146+
# - name: Combine coverage files
147+
# run: |
148+
# python -Im pip install coverage covdefaults
149+
# python -Im coverage combine
150+
# python -Im coverage xml -i
151+
152+
# - name: Fix coverage file name
153+
# run: sed -i "s/home\/runner\/work\/advanced-alchemy\/advanced-alchemy/github\/workspace/g" coverage.xml
154+
155+
# - name: Upload coverage reports to Codecov
156+
# uses: codecov/codecov-action@v4
157+
# with:
158+
# files: coverage.xml
159+
# token: ${{ secrets.CODECOV_TOKEN }}

0 commit comments

Comments
 (0)