Remove coveragerc (#121286)
parent
eb5a98e7ea
commit
afb184db73
|
@ -116,7 +116,6 @@ components: &components
|
|||
|
||||
# Testing related files that affect the whole test/linting suite
|
||||
tests: &tests
|
||||
- .coveragerc
|
||||
- codecov.yaml
|
||||
- pylint/**
|
||||
- requirements_test_pre_commit.txt
|
||||
|
|
1730
.coveragerc
1730
.coveragerc
File diff suppressed because it is too large
Load Diff
|
@ -74,7 +74,6 @@ If the code communicates with devices, web services, or third-party tools:
|
|||
- [ ] New or updated dependencies have been added to `requirements_all.txt`.
|
||||
Updated by running `python3 -m script.gen_requirements_all`.
|
||||
- [ ] For the updated dependencies - a link to the changelog, or at minimum a diff between library versions is added to the PR description.
|
||||
- [ ] Untested files have been added to `.coveragerc`.
|
||||
|
||||
<!--
|
||||
This project is very active and we have a high turnover of pull requests.
|
||||
|
|
|
@ -83,7 +83,7 @@ repos:
|
|||
pass_filenames: false
|
||||
language: script
|
||||
types: [text]
|
||||
files: ^(homeassistant/.+/(icons|manifest|strings)\.json|homeassistant/brands/.*\.json|\.coveragerc|homeassistant/.+/services\.yaml|script/hassfest/(?!metadata|mypy_config).+\.py|requirements_test.txt)$
|
||||
files: ^(homeassistant/.+/(icons|manifest|strings)\.json|homeassistant/brands/.*\.json|homeassistant/.+/services\.yaml|script/hassfest/(?!metadata|mypy_config).+\.py|requirements_test.txt)$
|
||||
- id: hassfest-metadata
|
||||
name: hassfest-metadata
|
||||
entry: script/run-in-env.sh python3 -m script.hassfest -p metadata
|
||||
|
|
|
@ -4,7 +4,7 @@ coverage:
|
|||
status:
|
||||
project:
|
||||
default:
|
||||
target: 90
|
||||
target: auto
|
||||
threshold: 0.09
|
||||
required:
|
||||
target: auto
|
||||
|
|
|
@ -675,6 +675,23 @@ filterwarnings = [
|
|||
"ignore:pkg_resources is deprecated as an API:DeprecationWarning:webrtcvad",
|
||||
]
|
||||
|
||||
[tool.coverage.run]
|
||||
source = ["homeassistant"]
|
||||
|
||||
[tool.coverage.report]
|
||||
exclude_lines = [
|
||||
# Have to re-enable the standard pragma
|
||||
"pragma: no cover",
|
||||
# Don't complain about missing debug-only code:
|
||||
"def __repr__",
|
||||
# Don't complain if tests don't hit defensive assertion code:
|
||||
"raise AssertionError",
|
||||
"raise NotImplementedError",
|
||||
# TYPE_CHECKING and @overload blocks are never executed during pytest run
|
||||
"if TYPE_CHECKING:",
|
||||
"@overload",
|
||||
]
|
||||
|
||||
[tool.ruff]
|
||||
required-version = ">=0.5.0"
|
||||
|
||||
|
|
|
@ -14,7 +14,6 @@ from . import (
|
|||
codeowners,
|
||||
config_flow,
|
||||
config_schema,
|
||||
coverage,
|
||||
dependencies,
|
||||
dhcp,
|
||||
docker,
|
||||
|
@ -53,7 +52,6 @@ INTEGRATION_PLUGINS = [
|
|||
config_flow, # This needs to run last, after translations are processed
|
||||
]
|
||||
HASS_PLUGINS = [
|
||||
coverage,
|
||||
docker,
|
||||
mypy_config,
|
||||
metadata,
|
||||
|
|
|
@ -1,181 +0,0 @@
|
|||
"""Validate coverage files."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from pathlib import Path
|
||||
|
||||
from .model import Config, Integration
|
||||
|
||||
DONT_IGNORE = (
|
||||
"config_flow.py",
|
||||
"device_action.py",
|
||||
"device_condition.py",
|
||||
"device_trigger.py",
|
||||
"diagnostics.py",
|
||||
"group.py",
|
||||
"intent.py",
|
||||
"logbook.py",
|
||||
"media_source.py",
|
||||
"recorder.py",
|
||||
"scene.py",
|
||||
)
|
||||
FORCE_COVERAGE = ("gold", "platinum")
|
||||
|
||||
CORE_PREFIX = """# Sorted by hassfest.
|
||||
#
|
||||
# To sort, run python3 -m script.hassfest -p coverage
|
||||
|
||||
[run]
|
||||
source = homeassistant
|
||||
omit =
|
||||
"""
|
||||
COMPONENTS_PREFIX = (
|
||||
" # omit pieces of code that rely on external devices being present\n"
|
||||
)
|
||||
SUFFIX = """[report]
|
||||
# Regexes for lines to exclude from consideration
|
||||
exclude_lines =
|
||||
# Have to re-enable the standard pragma
|
||||
pragma: no cover
|
||||
|
||||
# Don't complain about missing debug-only code:
|
||||
def __repr__
|
||||
|
||||
# Don't complain if tests don't hit defensive assertion code:
|
||||
raise AssertionError
|
||||
raise NotImplementedError
|
||||
|
||||
# TYPE_CHECKING and @overload blocks are never executed during pytest run
|
||||
if TYPE_CHECKING:
|
||||
@overload
|
||||
"""
|
||||
|
||||
|
||||
def validate(integrations: dict[str, Integration], config: Config) -> None:
|
||||
"""Validate coverage."""
|
||||
coverage_path = config.root / ".coveragerc"
|
||||
|
||||
not_found: list[str] = []
|
||||
unsorted: list[str] = []
|
||||
checking = False
|
||||
|
||||
previous_line = ""
|
||||
with coverage_path.open("rt") as fp:
|
||||
for line in fp:
|
||||
line = line.strip()
|
||||
|
||||
if line == COMPONENTS_PREFIX.strip():
|
||||
previous_line = ""
|
||||
continue
|
||||
|
||||
if not line or line.startswith("#"):
|
||||
continue
|
||||
|
||||
if not checking:
|
||||
if line == "omit =":
|
||||
checking = True
|
||||
continue
|
||||
|
||||
# Finished
|
||||
if line == "[report]":
|
||||
break
|
||||
|
||||
path = Path(line)
|
||||
|
||||
# Discard wildcard
|
||||
path_exists = path
|
||||
while "*" in path_exists.name:
|
||||
path_exists = path_exists.parent
|
||||
|
||||
if not path_exists.exists():
|
||||
not_found.append(line)
|
||||
continue
|
||||
|
||||
if line < previous_line:
|
||||
unsorted.append(line)
|
||||
previous_line = line
|
||||
|
||||
if not line.startswith("homeassistant/components/"):
|
||||
continue
|
||||
|
||||
# Ignore sub-directories
|
||||
if len(path.parts) > 4:
|
||||
continue
|
||||
|
||||
integration_path = path.parent
|
||||
|
||||
integration = integrations[integration_path.name]
|
||||
|
||||
if integration.quality_scale in FORCE_COVERAGE:
|
||||
integration.add_error(
|
||||
"coverage",
|
||||
f"has quality scale {integration.quality_scale} and "
|
||||
"should not be present in .coveragerc file",
|
||||
)
|
||||
continue
|
||||
|
||||
if (last_part := path.parts[-1]) in {"*", "const.py"} and Path(
|
||||
f"tests/components/{integration.domain}/__init__.py"
|
||||
).exists():
|
||||
integration.add_error(
|
||||
"coverage",
|
||||
f"has tests and should not use {last_part} in .coveragerc file",
|
||||
)
|
||||
continue
|
||||
|
||||
for check in DONT_IGNORE:
|
||||
if path.parts[-1] not in {"*", check}:
|
||||
continue
|
||||
|
||||
if (integration_path / check).exists():
|
||||
integration.add_error(
|
||||
"coverage",
|
||||
f"{check} must not be ignored by the .coveragerc file",
|
||||
)
|
||||
|
||||
if unsorted:
|
||||
config.add_error(
|
||||
"coverage",
|
||||
"Paths are unsorted in .coveragerc file. "
|
||||
"Run python3 -m script.hassfest\n - "
|
||||
f"{'\n - '.join(unsorted)}",
|
||||
fixable=True,
|
||||
)
|
||||
|
||||
if not_found:
|
||||
raise RuntimeError(
|
||||
f".coveragerc references files that don't exist: {', '.join(not_found)}."
|
||||
)
|
||||
|
||||
|
||||
def generate(integrations: dict[str, Integration], config: Config) -> None:
|
||||
"""Sort coverage."""
|
||||
coverage_path = config.root / ".coveragerc"
|
||||
core = []
|
||||
components = []
|
||||
section = "header"
|
||||
|
||||
with coverage_path.open("rt") as fp:
|
||||
for line in fp:
|
||||
if line == "[report]\n":
|
||||
break
|
||||
|
||||
if section != "core" and line == "omit =\n":
|
||||
section = "core"
|
||||
elif section != "components" and line == COMPONENTS_PREFIX:
|
||||
section = "components"
|
||||
elif section == "core" and line != "\n":
|
||||
core.append(line)
|
||||
elif section == "components" and line != "\n":
|
||||
components.append(line)
|
||||
|
||||
assert core, "core should be a non-empty list"
|
||||
assert components, "components should be a non-empty list"
|
||||
content = (
|
||||
f"{CORE_PREFIX}{"".join(sorted(core))}\n"
|
||||
f"{COMPONENTS_PREFIX}{"".join(sorted(components))}\n"
|
||||
f"\n{SUFFIX}"
|
||||
)
|
||||
|
||||
with coverage_path.open("w") as fp:
|
||||
fp.write(content)
|
Loading…
Reference in New Issue