1import ./make-test-python.nix (
2 { pkgs, ... }:
3 {
4 name = "ergo";
5 meta = with pkgs.lib.maintainers; {
6 maintainers = [ mmahut ];
7 };
8
9 nodes = {
10 machine =
11 { ... }:
12 {
13 services.ergo.enable = true;
14 services.ergo.api.keyHash = "324dcf027dd4a30a932c441f365a25e86b173defa4b8e58948253471b81b72cf";
15 };
16 };
17
18 testScript = ''
19 start_all()
20 machine.wait_for_unit("ergo.service")
21 '';
22 }
23)