We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d5ab372 commit ba7e744Copy full SHA for ba7e744
2 files changed
.github/workflows/coverage.yml
@@ -23,9 +23,11 @@ jobs:
23
run: |
24
python -m pip install --upgrade pip wheel setuptools
25
python -m pip install ".[test]"
26
- pip list
+ python -m pip list
27
28
- name: Generate coverage report
29
30
python -m pytest --cov=yaml2ics --doctest-modules --durations=20
31
- codecov
+
32
+ - name: Upload to codecov
33
+ uses: codecov/codecov-action@v3
pyproject.toml
@@ -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]
0 commit comments