Skip to content

Commit

Permalink
tests: test ptyxis on newer fedora template instead of gnome-terminal
Browse files Browse the repository at this point in the history
  • Loading branch information
marmarek committed Nov 30, 2024
1 parent 3f4f65e commit 1266acb
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions qubes/tests/integ/vm_qrexec_gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,9 @@ def test_011_run_gnome_terminal(self):
self.loop.run_until_complete(self.testvm1.start())
self.assertEqual(self.testvm1.get_power_state(), "Running")
self.loop.run_until_complete(self.wait_for_session(self.testvm1))
p = self.loop.run_until_complete(self.testvm1.run("gnome-terminal"))
p = self.loop.run_until_complete(
self.testvm1.run("gnome-terminal || " "ptyxis")
)
try:
title = "user@{}".format(self.testvm1.name)
if self.template.count("whonix"):
Expand Down Expand Up @@ -156,7 +158,7 @@ def test_011_run_gnome_terminal(self):
wait_count += 1
if wait_count > 100:
self.fail(
"Timeout while waiting for gnome-terminal "
"Timeout while waiting for gnome-terminal/ptyxis "
"termination"
)
self.loop.run_until_complete(asyncio.sleep(0.1))
Expand Down

0 comments on commit 1266acb

Please sign in to comment.