Skip to content

Various test improvement, especially for testing minimal templates #639

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 15 commits into from
Dec 11, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
tests: increase timeout in clipboard test
The point of the test is not its speed, but whether it eventually
happens. On the other hand, some of the test runners can be quite slow
under load.
  • Loading branch information
marmarek committed Dec 10, 2024
commit 452b6a3bc071627c42b33219402685a403c05c2e
2 changes: 1 addition & 1 deletion qubes/tests/integ/basic.py
Original file line number Diff line number Diff line change
Expand Up @@ -636,7 +636,7 @@ async def _test_clipboard(
# correct timestamp (so gui-daemon would not drop the copy request)
subprocess.check_call(["xdotool", "key", "ctrl+a", "ctrl+c"])
# wait a bit to let the zenity actually copy
await asyncio.sleep(1)
await asyncio.sleep(5)
subprocess.check_call(["xdotool", "key", "ctrl+shift+c", "Escape"])

await self.wait_for_window_coro(window_title, show=False)
Expand Down