Skip to content

Commit ef0ed08

Browse files
ci: Remove code coverage upload (feast-dev#3351)
Remove code coverage upload Signed-off-by: Felix Wang <[email protected]> Signed-off-by: Felix Wang <[email protected]>
1 parent 5c9b6fe commit ef0ed08

File tree

4 files changed

+2
-39
lines changed

4 files changed

+2
-39
lines changed

.github/workflows/master_only.yml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -158,15 +158,6 @@ jobs:
158158
SNOWFLAKE_CI_ROLE: ${{ secrets.SNOWFLAKE_CI_ROLE }}
159159
SNOWFLAKE_CI_WAREHOUSE: ${{ secrets.SNOWFLAKE_CI_WAREHOUSE }}
160160
run: pytest -n 8 --cov=./ --cov-report=xml --color=yes sdk/python/tests --integration --durations=5 --timeout=1200 --timeout_method=thread
161-
- name: Upload coverage to Codecov
162-
uses: codecov/codecov-action@v1
163-
with:
164-
token: ${{ secrets.CODECOV_TOKEN }}
165-
files: ./coverage.xml
166-
flags: integrationtests
167-
env_vars: OS,PYTHON
168-
fail_ci_if_error: true
169-
verbose: true
170161
- name: Benchmark python
171162
env:
172163
FEAST_SERVER_DOCKER_IMAGE_TAG: ${{ needs.build-lambda-docker-image.outputs.DOCKER_IMAGE_TAG }}

.github/workflows/nightly-ci.yml

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -208,13 +208,4 @@ jobs:
208208
SNOWFLAKE_CI_PASSWORD: ${{ secrets.SNOWFLAKE_CI_PASSWORD }}
209209
SNOWFLAKE_CI_ROLE: ${{ secrets.SNOWFLAKE_CI_ROLE }}
210210
SNOWFLAKE_CI_WAREHOUSE: ${{ secrets.SNOWFLAKE_CI_WAREHOUSE }}
211-
run: pytest -n 8 --cov=./ --cov-report=xml --color=yes sdk/python/tests --integration --durations=5 --timeout=1200 --timeout_method=thread
212-
- name: Upload coverage to Codecov
213-
uses: codecov/codecov-action@v1
214-
with:
215-
token: ${{ secrets.CODECOV_TOKEN }}
216-
files: ./coverage.xml
217-
flags: integrationtests
218-
env_vars: OS,PYTHON
219-
fail_ci_if_error: true
220-
verbose: true
211+
run: pytest -n 8 --cov=./ --cov-report=xml --color=yes sdk/python/tests --integration --durations=5 --timeout=1200 --timeout_method=thread

.github/workflows/pr_integration_tests.yml

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -182,13 +182,4 @@ jobs:
182182
SNOWFLAKE_CI_PASSWORD: ${{ secrets.SNOWFLAKE_CI_PASSWORD }}
183183
SNOWFLAKE_CI_ROLE: ${{ secrets.SNOWFLAKE_CI_ROLE }}
184184
SNOWFLAKE_CI_WAREHOUSE: ${{ secrets.SNOWFLAKE_CI_WAREHOUSE }}
185-
run: pytest -n 8 --cov=./ --cov-report=xml --color=yes sdk/python/tests --integration --durations=5 --timeout=1200 --timeout_method=thread
186-
- name: Upload coverage to Codecov
187-
uses: codecov/codecov-action@v1
188-
with:
189-
token: ${{ secrets.CODECOV_TOKEN }}
190-
files: ./coverage.xml
191-
flags: integrationtests
192-
env_vars: OS,PYTHON
193-
fail_ci_if_error: true
194-
verbose: true
185+
run: pytest -n 8 --cov=./ --cov-report=xml --color=yes sdk/python/tests --integration --durations=5 --timeout=1200 --timeout_method=thread

.github/workflows/unit_tests.yml

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -70,16 +70,6 @@ jobs:
7070
run: make install-python-ci-dependencies
7171
- name: Test Python
7272
run: pytest -n 8 --cov=./ --cov-report=xml --color=yes sdk/python/tests
73-
- name: Upload coverage to Codecov
74-
uses: codecov/codecov-action@v1
75-
if: github.repository == 'feast-dev/feast'
76-
with:
77-
token: ${{ secrets.CODECOV_TOKEN }}
78-
files: ./coverage.xml
79-
flags: unittests
80-
env_vars: OS,PYTHON
81-
fail_ci_if_error: true
82-
verbose: true
8373

8474
unit-test-go:
8575
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)