Skip to content

Commit

Permalink
Add dump test
Browse files Browse the repository at this point in the history
  • Loading branch information
Limych committed Oct 1, 2023
1 parent 85df9b5 commit 1de62ad
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 9 deletions.
17 changes: 9 additions & 8 deletions custom_components/integration_blueprint/manifest.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
{
"domain": "",
"name": "",
"domain": "integration_blueprint",
"name": "Integration blueprint",
"codeowners": [
"@ludeeus"
"@Limych"
],
"config_flow": true,
"documentation": "https://github.com/ludeeus/integration_blueprint",
"dependencies": [],
"documentation": "https://github.com/Limych/ha-blueprint",
"iot_class": "cloud_polling",
"issue_tracker": "",
"version": "",
"issue_tracker": "https://github.com/Limych/ha-blueprint/issues",
"requirements": [
"colorlog==6.7.0",
"ruff==0.0.267"
]
}
],
"version": "0.1.0"
}
2 changes: 1 addition & 1 deletion pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,4 @@ ignored-classes=_CountingAttr
expected-line-ending-format=LF

[EXCEPTIONS]
overgeneral-exceptions=BaseException,Exception,HomeAssistantError
overgeneral-exceptions=builtins.BaseException,builtins.Exception,HomeAssistantError.HomeAssistantError
5 changes: 5 additions & 0 deletions tests/test__init.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,7 @@
# pylint: disable=protected-access,redefined-outer-name
"""Test integration_blueprint setup process."""


def test_example():
"""Dumb test."""
assert int(2) == 2

0 comments on commit 1de62ad

Please sign in to comment.