Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ jobs:
- name: Pre-Commit Check
uses: pre-commit/[email protected]
- name: Run tests and generate coverage report
run: uv run pytest --doctest-modules -v --cov=toyml --cov-fail-under 80 --cov-report=term --cov-report=xml --cov-report=html toyml tests
run: uv run pytest --doctest-modules -v --cov=toyml --cov-fail-under 90 --cov-report=term --cov-report=xml --cov-report=html toyml tests

- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
if: success() && matrix.os == 'ubuntu-latest' && matrix.python-version == '3.12'
if: matrix.python-version == '3.12'
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage.xml
Expand Down