Fix confserver test and add dev pbr

Fix confserver test and add dev pbr
This commit is contained in:
Brian Martin 2019-05-23 09:20:17 -04:00
parent 588959d1ef
commit 7dc2504f2b
4 changed files with 20 additions and 4 deletions

View file

@ -18,7 +18,14 @@ def async_return(result):
return f
def test_disconnect():
confserver.disconnect()
async def test_disconnect_async():
await confserver.disconnect()
loop = asyncio.get_event_loop()
# Test
loop.run_until_complete(test_disconnect_async())
def test_base():
if os.path.exists("tests/tmp.db"):