Fix confserver test and add dev pbr
Fix confserver test and add dev pbr
This commit is contained in:
parent
588959d1ef
commit
7dc2504f2b
4 changed files with 20 additions and 4 deletions
|
|
@ -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"):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue