summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2016-12-19 13:53:21 +0100
committeraszlig <aszlig@redmoonstudios.org>2016-12-19 22:25:42 +0100
commit02a9da65c9640bd9f61f03d594a360d18541bfad (patch)
tree2d75ed958993ae40290f33b16c954a894ce6e1f9 /nixos
parent68bc260ca2d71a676dd6afdb3524d4fff483016b (diff)
downloadnixlib-02a9da65c9640bd9f61f03d594a360d18541bfad.tar
nixlib-02a9da65c9640bd9f61f03d594a360d18541bfad.tar.gz
nixlib-02a9da65c9640bd9f61f03d594a360d18541bfad.tar.bz2
nixlib-02a9da65c9640bd9f61f03d594a360d18541bfad.tar.lz
nixlib-02a9da65c9640bd9f61f03d594a360d18541bfad.tar.xz
nixlib-02a9da65c9640bd9f61f03d594a360d18541bfad.tar.zst
nixlib-02a9da65c9640bd9f61f03d594a360d18541bfad.zip
nixos: Disable OCR for tests that do not use it
Found out during testing of the Tesseract upgrade the kde5 and sddm
tests don't actually use OCR, so let's disable support for it.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Cc: @ttuegel
Diffstat (limited to 'nixos')
-rw-r--r--nixos/tests/kde5.nix2
-rw-r--r--nixos/tests/sddm.nix2
2 files changed, 0 insertions, 4 deletions
diff --git a/nixos/tests/kde5.nix b/nixos/tests/kde5.nix
index 30a0d09d18bb..30db316dba5e 100644
--- a/nixos/tests/kde5.nix
+++ b/nixos/tests/kde5.nix
@@ -20,8 +20,6 @@ import ./make-test.nix ({ pkgs, ...} :
     services.xserver.desktopManager.kde5.enable = true;
   };
 
-  enableOCR = true;
-
   testScript = { nodes, ... }:
   let xdo = "${pkgs.xdotool}/bin/xdotool"; in
    ''
diff --git a/nixos/tests/sddm.nix b/nixos/tests/sddm.nix
index 22a9e1bd2c7c..041d88fbeae6 100644
--- a/nixos/tests/sddm.nix
+++ b/nixos/tests/sddm.nix
@@ -19,8 +19,6 @@ import ./make-test.nix ({ pkgs, ...} : {
     services.xserver.desktopManager.default = "none";
   };
 
-  enableOCR = true;
-
   testScript = { nodes, ... }: ''
     startAll;
     $machine->waitForFile("/home/alice/.Xauthority");