Extend testing timeout

This commit is contained in:
Marta Marczykowska-Górecka 2020-09-29 00:43:16 +02:00
parent 70b8f0c144
commit 822707f9f9
No known key found for this signature in database
GPG Key ID: 9A752C30B26FD04B

View File

@ -826,7 +826,7 @@ class QubeManagerTest(unittest.TestCase):
# dispvm to vanish
self._run_command_and_process_events(
["qvm-run", "--dispvm", dispvm_template, "true"], timeout=60,
additional_timeout=30)
additional_timeout=60)
final_vms = self._create_set_of_current_vms()
@ -871,7 +871,7 @@ class QubeManagerTest(unittest.TestCase):
self.addCleanup(
subprocess.call, ["qvm-prefs", target_vm_name, "label", "blue"])
self._run_command_and_process_events(
["qvm-prefs", target_vm_name, "label", "red"])
["qvm-prefs", target_vm_name, "label", "red"], timeout=20)
new_label = self._get_table_item(vm_row, "Label", Qt.DecorationRole)