Skip to content
This repository has been archived by the owner on Oct 23, 2023. It is now read-only.

Bump coverage from 6.5.0 to 7.0.0 #240

Merged
merged 2 commits into from
Dec 19, 2022
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
4 changes: 2 additions & 2 deletions .github/workflows/unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox tox-gh-actions coveragepy-lcov
pip install tox tox-gh-actions coverage
- name: Run unit tests for python 3.8
run: |
tox -e py38
coveragepy-lcov --output_file_path lcov.info
coverage lcov -o lcov.info
- name: Send coverage to coveralls
uses: coverallsapp/github-action@master
with:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
],
extras_require={
"test": [
"coverage==6.5.0",
"coverage==7.0.0",
"pytest<7.3",
"pytest-cov==4.0.0",
"testfixtures==7.0.4",
Expand Down