summaryrefslogtreecommitdiffstats
path: root/nixos/tests/installed-tests
diff options
context:
space:
mode:
authorJan Tojnar <jtojnar@gmail.com>2020-07-24 16:32:34 +0200
committerJan Tojnar <jtojnar@gmail.com>2020-07-24 16:32:34 +0200
commit8d53e88346d923e7d3114a8cfc09d45accbe5bc8 (patch)
tree8a6adb7d7b60f8ebbfd34118aa8129311052df4d /nixos/tests/installed-tests
parent2bfa6aa848a89e4ba8308128801812e5018dcd44 (diff)
nixosTests.installed-tests.flatpak: Fix
Along with the `socat` fix in the parent commit, this makes the Flatpakā€™s installed tests finally pass again. The tests seem to need slightly over 2G of disk space, and it appears that the test suite was ported to Python 3 in 1.5.1: https://github.com/flatpak/flatpak/commit/2b6641575db75d8af8228749798f4ea635797577
Diffstat (limited to 'nixos/tests/installed-tests')
-rw-r--r--nixos/tests/installed-tests/flatpak.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/tests/installed-tests/flatpak.nix b/nixos/tests/installed-tests/flatpak.nix
index 091c99326629..6b83d006f162 100644
--- a/nixos/tests/installed-tests/flatpak.nix
+++ b/nixos/tests/installed-tests/flatpak.nix
@@ -10,9 +10,9 @@ makeInstalledTest {
services.xserver.displayManager.gdm.enable = false;
services.gnome3.core-utilities.enable = false;
services.flatpak.enable = true;
- environment.systemPackages = with pkgs; [ gnupg ostree python2 ];
+ environment.systemPackages = with pkgs; [ gnupg ostree python3 ];
virtualisation.memorySize = 2047;
- virtualisation.diskSize = 1024;
+ virtualisation.diskSize = 3072;
};
testRunnerFlags = "--timeout 3600";