use asyncio.run in tests instead of awaiting

This commit is contained in:
Bas Nijholt 2019-11-11 17:03:45 +01:00
parent 3b27f7d7e7
commit af0a1d61b1
2 changed files with 4 additions and 2 deletions

View File

@ -1,3 +1,4 @@
import asyncio
import pytest
import glob
import json
@ -76,7 +77,7 @@ def dev(request):
ip = request.config.getoption("--ip")
if ip:
d = Discover.discover_single(ip)
d = asyncio.run(Discover.discover_single(ip))
print(d.model)
if d.model in file:
return d

View File

@ -1,3 +1,4 @@
import asyncio
import datetime
from unittest.mock import patch
@ -63,7 +64,7 @@ def test_invalid_connection(dev):
def test_query_helper(dev):
with pytest.raises(SmartDeviceException):
dev._query_helper("test", "testcmd", {})
asyncio.run(dev._query_helper("test", "testcmd", {}))
# TODO check for unwrapping?