diff --git a/custom_components/integration_blueprint/manifest.json b/custom_components/integration_blueprint/manifest.json index 623e7af..9c1ea12 100644 --- a/custom_components/integration_blueprint/manifest.json +++ b/custom_components/integration_blueprint/manifest.json @@ -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" - ] -} \ No newline at end of file + ], + "version": "0.1.0" +} diff --git a/pylintrc b/pylintrc index ecb80d8..850e50d 100644 --- a/pylintrc +++ b/pylintrc @@ -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 diff --git a/tests/test__init.py b/tests/test__init.py index aa83b56..cdb9c8a 100644 --- a/tests/test__init.py +++ b/tests/test__init.py @@ -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