about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorPeder Bergebakken Sundt <pbsds@hotmail.com>2024-05-08 13:07:09 +0200
committerGitHub <noreply@github.com>2024-05-08 13:07:09 +0200
commit98739384322150c85dd6979d7bf763f8916200c0 (patch)
tree7896b58c497e0d3a0a110516aabd79168cc25cc9 /nixos
parenteffd0ba5a06add7e4f2cad92e656f2ea800768ff (diff)
parent8027f83d32f689611b5967ebed1d57b8233f8348 (diff)
Merge pull request #302814 from paumr/auto-update/archi
archi: 5.2.0 -> 5.3.0
Diffstat (limited to 'nixos')
-rw-r--r--nixos/tests/archi.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/nixos/tests/archi.nix b/nixos/tests/archi.nix
index 59f2e940c0050..a8cb1c503d4f7 100644
--- a/nixos/tests/archi.nix
+++ b/nixos/tests/archi.nix
@@ -24,7 +24,9 @@ import ./make-test-python.nix ({ lib, ... }: {
          machine.wait_for_window("Archi")
 
          # wait till main UI is open
-         machine.wait_for_text("Welcome to Archi")
+         # since OCR seems to be buggy wait_for_text was replaced by sleep, issue: #302965
+         # machine.wait_for_text("Welcome to Archi")
+         machine.sleep(20)
 
          machine.screenshot("welcome-screen")
   '';