nixpkgs/nixos/tests/pict-rs.nix

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

25 lines
456 B
Nix
Raw Normal View History

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