Browse Source

tests: make timeout it shutdown test even longer

Reduce false positives when testing on busy machine.
Marek Marczykowski-Górecki 5 years ago
parent
commit
29a26e7d69
1 changed files with 1 additions and 1 deletions
  1. 1 1
      qubes/tests/integ/basic.py

+ 1 - 1
qubes/tests/integ/basic.py

@@ -211,7 +211,7 @@ class TC_00_Basic(qubes.tests.SystemTestCase):
         while self.vm.get_power_state() != 'Halted':
             self.loop.run_until_complete(asyncio.sleep(1))
         # and give a chance for both domain-shutdown handlers to execute
-        self.loop.run_until_complete(asyncio.sleep(1))
+        self.loop.run_until_complete(asyncio.sleep(3))
 
         if self.test_failure_reason:
             self.fail(self.test_failure_reason)