Basic check for QubesOS in runtime tests and to avoid starting LAN server
parent
87b8655b83
commit
8389ed190c
|
@ -67,8 +67,8 @@ MOTD_SIGN_KEY = "TRH763JURNY47QPBTTQ4LLPYCYQK6Q5YA33R6GANKZK5C5DKCIGQ"
|
|||
"""Public key that signs update notifications."""
|
||||
UPDATE_SIGN_KEY = "TRH763JURNY47QPBTTQ4LLPYCYQK6Q5YA33R6GANKZK5C5DKCIGQ"
|
||||
|
||||
platform = platform.system()
|
||||
if platform == 'Windows':
|
||||
pf = platform.system()
|
||||
if pf == 'Windows':
|
||||
SCRIPT_NAME = 'run-windows.bat'
|
||||
else:
|
||||
if os.path.exists(filepaths.daemon_mark_file):
|
||||
|
|
|
@ -7,8 +7,12 @@ from gevent import sleep
|
|||
from coredb import blockmetadb
|
||||
from onionrutils.epoch import get_epoch
|
||||
import logger
|
||||
from etc import onionrvalues
|
||||
|
||||
def test_lan_server(testmanager):
|
||||
if onionrvalues.IS_QUBES:
|
||||
logger.warn("Cannot test LAN on QubesOS", terminal=True)
|
||||
return
|
||||
start_time = get_epoch()
|
||||
for i in range(1337, 1340):
|
||||
try:
|
||||
|
|
|
@ -1 +1 @@
|
|||
1593561863
|
||||
1597039738
|
Loading…
Reference in New Issue