Skip to content

Commit

Permalink
Merge pull request Ponte-Energy-Partners#400 from jakob-keller/coverage
Browse files Browse the repository at this point in the history
Improve coverage reporting
  • Loading branch information
jakob-keller committed Aug 12, 2024
2 parents fbd3a80 + 227a769 commit 7235fc9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions peprock/datetime/period.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@
import sys

if sys.version_info >= (3, 11):
from typing import Self
from typing import Self # pragma: no cover
else:
from typing_extensions import Self
from typing_extensions import Self # pragma: no cover


@dataclasses.dataclass(frozen=True)
Expand Down
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ changelog_incremental = true
[tool.coverage.report]
exclude_also = [
"@abc\\.abstractmethod$",
"@typing\\.overload$",
"^if typing\\.TYPE_CHECKING:$",
]

Expand Down

0 comments on commit 7235fc9

Please sign in to comment.