Initial commit

Basic functionality could work (untested!)
This commit is contained in:
patman15
2024-07-04 11:44:36 +02:00
parent f4f6323f95
commit a007861a4c
16 changed files with 637 additions and 1 deletions

16
pyproject.toml Normal file
View File

@@ -0,0 +1,16 @@
# pyproject.toml
#[tool.setuptools.packages.find]
#where = ["custom_components/"]
#include = ["bms_ble"]
[tool.pytest.ini_options]
minversion = "8.0"
addopts="--cov=custom_components.bms_ble --cov-report=term-missing --cov-fail-under=100"
pythonpath = [
"custom_components.hunterdouglas_powerview_ble",
]
testpaths = [
"tests",
]
asyncio_mode = "auto"