1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-11-24 17:28:08 +00:00

Fix tests.

This commit is contained in:
grossmj 2020-04-28 13:49:05 +09:30
parent 4ddd45f788
commit 8536af33da

View File

@ -19,6 +19,7 @@
Docker container instance. Docker container instance.
""" """
import sys
import asyncio import asyncio
import shutil import shutil
import psutil import psutil
@ -616,6 +617,7 @@ class DockerVM(BaseNode):
x11_socket = os.path.join("/tmp/.X11-unix/", "X{}".format(self._display)) x11_socket = os.path.join("/tmp/.X11-unix/", "X{}".format(self._display))
await wait_for_file_creation(x11_socket) await wait_for_file_creation(x11_socket)
if not hasattr(sys, "_called_from_test") or not sys._called_from_test:
# Start vncconfig for tigervnc clipboard support, connection available only after socket creation. # Start vncconfig for tigervnc clipboard support, connection available only after socket creation.
tigervncconfig_path = shutil.which("vncconfig") tigervncconfig_path = shutil.which("vncconfig")
if tigervnc_path and tigervncconfig_path: if tigervnc_path and tigervncconfig_path: