From 1edaceec4bc16fa690a3b916cbe14f315ea27196 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20K=C3=A4berich?= Date: Wed, 1 May 2024 14:48:19 +0200 Subject: [PATCH] run tests with offscreen plugin --- Software/Integrationtests/tests/TestBase.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Software/Integrationtests/tests/TestBase.py b/Software/Integrationtests/tests/TestBase.py index 3f5dfeb0..32a84252 100644 --- a/Software/Integrationtests/tests/TestBase.py +++ b/Software/Integrationtests/tests/TestBase.py @@ -8,7 +8,7 @@ class TestBase(unittest.TestCase): def setUp(self): - self.gui = subprocess.Popen([defs.GUI_PATH, '-p', '19544', '--reset-preferences'], stdout=subprocess.PIPE, stderr=subprocess.STDOUT) + self.gui = subprocess.Popen([defs.GUI_PATH, '-p', '19544', '--reset-preferences', '-platform', 'offscreen'], stdout=subprocess.PIPE, stderr=subprocess.STDOUT) # wait for the SCPI server to become available timeout = time.time() + 3;