mirror of
git://github.com/kovidgoyal/calibre.git
synced 2025-12-16 07:44:28 +01:00
Increase the timeout when doing a DBUS build test
This commit is contained in:
parent
101948c948
commit
a664ea995f
1 changed files with 2 additions and 2 deletions
|
|
@ -43,9 +43,9 @@ def test_pycryptodome(self):
|
|||
def test_dbus(self):
|
||||
from jeepney.io.blocking import open_dbus_connection
|
||||
if 'DBUS_SESSION_BUS_ADDRESS' in os.environ:
|
||||
bus = open_dbus_connection(bus='SYSTEM')
|
||||
bus = open_dbus_connection(bus='SYSTEM', auth_timeout=10.)
|
||||
bus.close()
|
||||
bus = open_dbus_connection(bus='SESSION')
|
||||
bus = open_dbus_connection(bus='SESSION', auth_timeout=10.)
|
||||
bus.close()
|
||||
del bus
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue