-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update pyproject.toml * add periodic decorator from zhawss * add deps * update cluster handlers * update group * update endpoint * update device * cleanup gateway * more gateway cleanup * cleanup discovery * cleanup registries * fix slugify dep * clean up helpers * clean up * rename * start working on entities * update for quirks stuff * async stuff * start updating platform entities * update lock * update number * update select * clean up sensor * update siren * update switch * clean up * remove temp * tests from zhaws * button test * task cleanup * binary sensor test cleanup * cluster handlers tests and cleanup * discovery fixes * clean up * more cleanup * cleanup * test alarm control panel * remove import * climate tests * cover tests * cleanup * fan tests * lock tests * number tests * more tests * more work on tests * restructure and cleanup * more select tests * switch tests * counter sensor temp fixes * don't load 2x * more testing work * more tests * make all tests green * clean up * more cleanup * absolutify the imports * rough conversion on update * clean up constant duplication * fix stupid git ignore * add coverage * don't count TYPE_CHECKING blocks in coverage * unwind the sensordeviceclass changes from HA * more test coverage * button coverage * coverage * fix event handling * coverage * coverage * coverage * coverage * device tracker tests * more fan coverage * light coverage * coverage * coverage * coverage * coverage * event relays * set gateway ref in config * add global listeners * put baud rates back * rejigger * native_value * unify interface * add _attr_native_unit_of_measurement * tweak * unify interface * convert some events to dataclasses * fix name * debug * name handling needs cleanup * debug * add color modes * rename to emit prefix * emit zha event * clean up * rename * emit * emit * remove ZHA prefix from class names * remove ZHA prefix * remove ZHA prefix * no eventing for light group stuff * direct device availability * compat layer * some guards * add context * cleanup * lock async_update cleanup * clean up switch async_update * clean up * clean up handle_cluster_handler_attribute_updated * more efficient event processing * fix emits * coverage * cleanup * clean up * tests * more coverage * initial conversion of OTA * bust the cache and reduce cov to 92% * try explicit * oops
- Loading branch information
Showing
101 changed files
with
30,904 additions
and
6,170 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
[report] | ||
show_missing = True | ||
exclude_also = | ||
if TYPE_CHECKING: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -49,7 +49,6 @@ coverage.xml | |
*.py,cover | ||
.hypothesis/ | ||
.pytest_cache/ | ||
cover/ | ||
|
||
# Translations | ||
*.mo | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,8 @@ pytest-cov | |
pytest-sugar | ||
pytest-timeout | ||
pytest-asyncio | ||
pytest-xdist | ||
pytest | ||
zigpy>=0.63.5 | ||
ruff | ||
looptime |
Oops, something went wrong.