2021-09-30 13:15:08 +01: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 13:15:08 +01: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")
|
|
|
|
'';
|
|
|
|
})
|