Skip to content

Commit afc53c0

Browse files
committed
bump coverage version from 5.3 to 7.6.1 the max version supported by py3.8; update setup.cfg [coverage:report] block with exclude_lines for @overload decorated methods
1 parent 23841f7 commit afc53c0

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ integration-tests:
5454
.PHONY: coverage
5555
coverage: test
5656
@coverage combine
57-
@coverage report
57+
@coverage report --sort=cover
5858

5959
## coverage-html: Display code coverage in the browser.
6060
.PHONY: coverage-html

requirements-test.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
coverage==5.3
1+
coverage==7.6.1
22
freezegun==1.5.1
33
pytest==6.2.5
44
pytest-mock==3.3.1

setup.cfg

+2
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,15 @@ exclude_lines =
2222
@abc.abstractmethod
2323
if TYPE_CHECKING
2424
class .*Protocol.*
25+
@overload
2526
omit =
2627
docs/modules/ROOT/examples/logging/tutorial003.py
2728
docs/modules/ROOT/examples/logging/tutorial004.py
2829
docs/modules/ROOT/examples/logging/tutorial005.py
2930
docs/modules/ROOT/examples/followable/tutorial001.py
3031
src/corva/__init__.py
3132
src/version.py
33+
src/plugin.py
3234

3335
[isort]
3436
profile = black

0 commit comments

Comments
 (0)