tests: unhaunt the flakes nixos tests

these should really wait for networks to come up, otherwise they can fail.

fixes #235

Change-Id: I08989e8bdb0de280df74660ac43983de5c34fa9d
This commit is contained in:
eldritch horrors 2024-04-18 21:03:03 +02:00
parent f9d08cc44c
commit a326344253
2 changed files with 8 additions and 0 deletions

View file

@ -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")

View file

@ -121,6 +121,10 @@ in
start_all()
client.succeed("systemctl start network-online.target")
sourcehut.succeed("systemctl start network-online.target")
client.wait_for_unit("network-online.target")
sourcehut.wait_for_unit("network-online.target")
sourcehut.wait_for_unit("httpd.service")
client.succeed("curl -v https://git.sr.ht/ >&2")