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
This commit is contained in:
Alyssa Ross 2022-09-02 18:09:00 +00:00
parent 488412a1db
commit 1e8f59b2ee
No known key found for this signature in database
GPG Key ID: F9DBED4859B271C0

View File

@ -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'")
'';
})