nixpkgs/nixos/tests/pict-rs.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
406 B
Nix
Raw Normal View History

2021-09-30 12:15:08 +00:00
import ./make-test-python.nix ({ pkgs, lib, ... }:
{
name = "pict-rs";
meta.maintainers = with lib.maintainers; [ happysalada ];
2022-03-20 23:15:30 +00:00
nodes.machine = { ... }: {
2021-09-30 12:15:08 +00:00
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)
2021-09-30 12:15:08 +00:00
'';
})