Skip to content

Commit

Permalink
run tests with offscreen plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
jankae committed May 1, 2024
1 parent cdef035 commit 1edacee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Software/Integrationtests/tests/TestBase.py
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 1edacee

Please sign in to comment.