about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorAlyssa Ross <hi@alyssa.is>2022-09-02 18:09:00 +0000
committerAlyssa Ross <hi@alyssa.is>2022-09-02 18:09:00 +0000
commit1e8f59b2ee457e0b4f2edf62cf89054f501a0706 (patch)
treee80e000386d39505d86911ebf50ea8e7f2843339 /nixos
parent488412a1db0c3046b6699168cdb2a581c88181b8 (diff)
downloadnixlib-1e8f59b2ee457e0b4f2edf62cf89054f501a0706.tar
nixlib-1e8f59b2ee457e0b4f2edf62cf89054f501a0706.tar.gz
nixlib-1e8f59b2ee457e0b4f2edf62cf89054f501a0706.tar.bz2
nixlib-1e8f59b2ee457e0b4f2edf62cf89054f501a0706.tar.lz
nixlib-1e8f59b2ee457e0b4f2edf62cf89054f501a0706.tar.xz
nixlib-1e8f59b2ee457e0b4f2edf62cf89054f501a0706.tar.zst
nixlib-1e8f59b2ee457e0b4f2edf62cf89054f501a0706.zip
nixosTests.moodle: increase timeout
With the default timeout, this test would time out too early for me
and others[1].

[1]: https://github.com/NixOS/nixpkgs/pull/177052#issue-1266336706
Diffstat (limited to 'nixos')
-rw-r--r--nixos/tests/moodle.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/tests/moodle.nix b/nixos/tests/moodle.nix
index 4570e8963882..8fd011e0cb21 100644
--- a/nixos/tests/moodle.nix
+++ b/nixos/tests/moodle.nix
@@ -16,7 +16,7 @@ import ./make-test-python.nix ({ pkgs, lib, ... }: {
 
   testScript = ''
     start_all()
-    machine.wait_for_unit("phpfpm-moodle.service")
+    machine.wait_for_unit("phpfpm-moodle.service", timeout=1800)
     machine.wait_until_succeeds("curl http://localhost/ | grep 'You are not logged in'")
   '';
 })