1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-23 07:10:39 -04:00
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
402 B
Nix
Raw Normal View History

2021-09-30 08:15:08 -04:00
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")
'';
})