summary refs log tree commit diff
path: root/nixos/tests/signal-desktop.nix
diff options
context:
space:
mode:
authordevhell <devhell@mailfresser.de>2020-03-09 13:13:51 +0000
committerdevhell <devhell@mailfresser.de>2020-03-09 13:13:51 +0000
commit534f1337c145515368359d0841cfbd1d7be4ff88 (patch)
treed2e49f74ea8086079cf3d8e62dfa19ce9a76256e /nixos/tests/signal-desktop.nix
parentfe08f01f26e6fa5ca50ec70df17b88a49759730d (diff)
downloadnixpkgs-534f1337c145515368359d0841cfbd1d7be4ff88.tar
nixpkgs-534f1337c145515368359d0841cfbd1d7be4ff88.tar.gz
nixpkgs-534f1337c145515368359d0841cfbd1d7be4ff88.tar.bz2
nixpkgs-534f1337c145515368359d0841cfbd1d7be4ff88.tar.lz
nixpkgs-534f1337c145515368359d0841cfbd1d7be4ff88.tar.xz
nixpkgs-534f1337c145515368359d0841cfbd1d7be4ff88.tar.zst
nixpkgs-534f1337c145515368359d0841cfbd1d7be4ff88.zip
tests: Fix signal-desktop
This test fails due to OOM on the VM. Setting the memory of the VM to
1024 lets the test succeed.

Cc: @flokli
Diffstat (limited to 'nixos/tests/signal-desktop.nix')
-rw-r--r--nixos/tests/signal-desktop.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/nixos/tests/signal-desktop.nix b/nixos/tests/signal-desktop.nix
index ae141fe116d..e4b830e9e23 100644
--- a/nixos/tests/signal-desktop.nix
+++ b/nixos/tests/signal-desktop.nix
@@ -17,6 +17,7 @@ import ./make-test-python.nix ({ pkgs, ...} :
     services.xserver.enable = true;
     test-support.displayManager.auto.user = "alice";
     environment.systemPackages = [ pkgs.signal-desktop ];
+    virtualisation.memorySize = 1024;
   };
 
   enableOCR = true;