Skip to content
Merged
Show file tree
Hide file tree
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
6 changes: 4 additions & 2 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,11 @@ jobs:
run: |
python -m pip install --upgrade pip wheel setuptools
python -m pip install ".[test]"
pip list
python -m pip list

- name: Generate coverage report
run: |
python -m pytest --cov=yaml2ics --doctest-modules --durations=20
codecov

- name: Upload to codecov
uses: codecov/codecov-action@v3
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ dependencies = [
]

[project.optional-dependencies]
test = ["pytest >= 7.1", "pytest-cov >= 3.0", "codecov >= 2.1"]
test = ["pytest >= 7.3", "pytest-cov >= 4.0"]
lint = ["pre-commit >= 3.0"]

[project.scripts]
Expand Down