about summary refs log tree commit diff
diff options
context:
space:
mode:
authorpaumr <paum@bdisk.eu>2024-05-06 22:23:29 +0200
committerpaumr <paum@bdisk.eu>2024-05-07 01:56:25 +0200
commit8027f83d32f689611b5967ebed1d57b8233f8348 (patch)
tree6971cd2906c998fdaff8efc9526088179aed6667
parent9f1a2da3e97ccc4c51e8fa1adbe5ca3e313d7e11 (diff)
archi: removed OCR welcome check
-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")
   '';