diff --git a/.coveragerc b/.coveragerc index 5b966b817a3..32b7257ea00 100644 --- a/.coveragerc +++ b/.coveragerc @@ -1148,7 +1148,6 @@ omit = homeassistant/components/stream/core.py homeassistant/components/stream/fmp4utils.py homeassistant/components/stream/hls.py - homeassistant/components/stream/recorder.py homeassistant/components/stream/worker.py homeassistant/components/streamlabswater/* homeassistant/components/suez_water/* diff --git a/codecov.yml b/codecov.yml index 8c3c5b35ca5..5a314277012 100644 --- a/codecov.yml +++ b/codecov.yml @@ -19,6 +19,7 @@ coverage: - homeassistant/components/*/intent.py - homeassistant/components/*/logbook.py - homeassistant/components/*/media_source.py + - homeassistant/components/*/recorder.py - homeassistant/components/*/scene.py patch: default: @@ -36,6 +37,7 @@ coverage: - homeassistant/components/*/intent.py - homeassistant/components/*/logbook.py - homeassistant/components/*/media_source.py + - homeassistant/components/*/recorder.py - homeassistant/components/*/scene.py comment: false diff --git a/script/hassfest/coverage.py b/script/hassfest/coverage.py index 7d958307307..b2ee99e896b 100644 --- a/script/hassfest/coverage.py +++ b/script/hassfest/coverage.py @@ -15,6 +15,7 @@ DONT_IGNORE = ( "intent.py", "logbook.py", "media_source.py", + "recorder.py", "scene.py", )