diff options
author | eldritch horrors <pennae@lix.systems> | 2024-04-18 21:03:03 +0200 |
---|---|---|
committer | eldritch horrors <pennae@lix.systems> | 2024-04-18 20:09:19 +0000 |
commit | a326344253ee55d50476ff696b83ffb15366852d (patch) | |
tree | 3d67eb58d8629e7e44bf5f60134f6291e63e28a0 /tests/nixos/github-flakes.nix | |
parent | f9d08cc44c615606186d65fe2e500d10488bf8e4 (diff) |
tests: unhaunt the flakes nixos tests
these should really wait for networks to come up, otherwise they can fail.
fixes #235
Change-Id: I08989e8bdb0de280df74660ac43983de5c34fa9d
Diffstat (limited to 'tests/nixos/github-flakes.nix')
-rw-r--r-- | tests/nixos/github-flakes.nix | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/nixos/github-flakes.nix b/tests/nixos/github-flakes.nix index 079e79451..4830be6ac 100644 --- a/tests/nixos/github-flakes.nix +++ b/tests/nixos/github-flakes.nix @@ -160,6 +160,10 @@ in def cat_log(): github.succeed("cat /var/log/httpd/*.log >&2") + client.succeed("systemctl start network-online.target") + github.succeed("systemctl start network-online.target") + client.wait_for_unit("network-online.target") + github.wait_for_unit("network-online.target") github.wait_for_unit("httpd.service") client.succeed("curl -v https://github.com/ >&2") |