Skip to content

Commit

Permalink
Merge pull request #172 from puddly/puddly/new-radio-api
Browse files Browse the repository at this point in the history
Implement new radio API
  • Loading branch information
puddly authored Jun 19, 2022
2 parents 0e03cc4 + 2945eac commit 3d6e730
Show file tree
Hide file tree
Showing 9 changed files with 845 additions and 230 deletions.
3 changes: 3 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,6 @@ force_sort_within_sections = true
known_first_party = zigpy_deconz,tests
forced_separate = tests
combine_as_imports = true

[tool:pytest]
asyncio_mode = auto
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@
author_email="[email protected]",
license="GPL-3.0",
packages=find_packages(exclude=["tests"]),
install_requires=["pyserial-asyncio", "zigpy>=0.40.0"],
tests_require=["pytest", "pytest-asyncio", "asynctest"],
install_requires=["pyserial-asyncio", "zigpy>=0.47.0"],
tests_require=["pytest", "pytest-asyncio>=0.17", "asynctest"],
)
1 change: 0 additions & 1 deletion tests/test_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@

from .async_mock import AsyncMock, MagicMock, patch, sentinel

pytestmark = pytest.mark.asyncio
DEVICE_CONFIG = {zigpy.config.CONF_DEVICE_PATH: "/dev/null"}


Expand Down
Loading

0 comments on commit 3d6e730

Please sign in to comment.