Skip to content

Commit 6f9b0bf

Browse files
authored
Merge pull request #195 from puddly/rc
0.17.0 Release
2 parents 1c500c2 + 8e59044 commit 6f9b0bf

File tree

10 files changed

+846
-231
lines changed

10 files changed

+846
-231
lines changed

setup.cfg

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,6 @@ force_sort_within_sections = true
2020
known_first_party = zigpy_deconz,tests
2121
forced_separate = tests
2222
combine_as_imports = true
23+
24+
[tool:pytest]
25+
asyncio_mode = auto

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@
2121
author_email="[email protected]",
2222
license="GPL-3.0",
2323
packages=find_packages(exclude=["tests"]),
24-
install_requires=["pyserial-asyncio", "zigpy>=0.40.0"],
25-
tests_require=["pytest", "pytest-asyncio", "asynctest"],
24+
install_requires=["pyserial-asyncio", "zigpy>=0.47.0"],
25+
tests_require=["pytest", "pytest-asyncio>=0.17", "asynctest"],
2626
)

tests/test_api.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414

1515
from .async_mock import AsyncMock, MagicMock, patch, sentinel
1616

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

2019

0 commit comments

Comments
 (0)