Skip to content

Commit

Permalink
Disable coverage again
Browse files Browse the repository at this point in the history
  • Loading branch information
fchollet committed Oct 19, 2024
1 parent 1efa171 commit fd13b7c
Showing 1 changed file with 13 additions and 10 deletions.
23 changes: 13 additions & 10 deletions .github/workflows/actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,16 +86,19 @@ jobs:
python integration_tests/torch_custom_fit_test.py
- name: Test with pytest
run: |
pytest keras --ignore keras/src/applications --cov=keras
coverage xml --omit='keras/src/applications/*,keras/api' -o core-coverage.xml
- name: Codecov keras
uses: codecov/codecov-action@v4
with:
env_vars: PYTHON,KERAS_HOME
flags: keras,keras-${{ matrix.backend }}
files: core-coverage.xml
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: false
pytest keras --ignore keras/src/applications
# - name: Test with pytest
# run: |
# pytest keras --ignore keras/src/applications --cov=keras
# coverage xml --omit='keras/src/applications/*,keras/api' -o core-coverage.xml
# - name: Codecov keras
# uses: codecov/codecov-action@v4
# with:
# env_vars: PYTHON,KERAS_HOME
# flags: keras,keras-${{ matrix.backend }}
# files: core-coverage.xml
# token: ${{ secrets.CODECOV_TOKEN }}
# fail_ci_if_error: false

format:
name: Check the code format
Expand Down

0 comments on commit fd13b7c

Please sign in to comment.