summary refs log tree commit diff
path: root/nixos/tests/pict-rs.nix
blob: 432fd6a50ccd80208f498c1e47c0b3b93779a85a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import ./make-test-python.nix ({ pkgs, lib, ... }:
  {
    name = "pict-rs";
    meta.maintainers = with lib.maintainers; [ happysalada ];

    machine = { ... }: {
      environment.systemPackages = with pkgs; [ curl jq ];
      services.pict-rs.enable = true;
    };

    testScript = ''
      start_all()

      machine.wait_for_unit("pict-rs")
      machine.wait_for_open_port("8080")
    '';
  })