notes: 2.3.0 -> 2.3.1 (#352950)
[NixPkgs.git] / nixos / tests / photonvision.nix
blob2cadaa4bc02e4c6fddda78d27a897de6eb8e1fcc
1 import ./make-test-python.nix ({ pkgs, lib, ... }:
3   name = "photonvision";
5   nodes = {
6     machine = { pkgs, ... }: {
7       services.photonvision = {
8         enable = true;
9       };
10     };
11   };
13   testScript = ''
14     start_all()
15     machine.wait_for_unit("photonvision.service")
16     machine.wait_for_open_port(5800)
17   '';
19   meta.maintainers = with lib.maintainers; [ max-niederman ];