nixosTests.prefect: fix

This commit is contained in:
Sizhe Zhao 2026-04-29 10:59:46 +08:00
commit b323966ae8
No known key found for this signature in database
GPG key ID: ED1807251A7DA08F

View file

@ -11,6 +11,7 @@ in
{
services.prefect = {
enable = true;
baseUrl = "http://127.0.0.1";
};
};
};
@ -18,7 +19,7 @@ in
testScript = ''
machine.start()
machine.wait_for_unit("prefect-server.service")
machine.wait_for_open_port("${mainPort}")
machine.wait_for_open_port(${mainPort})
'';
meta = with lib.maintainers; {