1# This test runs CRI-O and verifies via critest
2import ./make-test-python.nix ({ pkgs, ... }: {
3 name = "cri-o";
4 meta.maintainers = with pkgs.lib; teams.podman.members;
5
6 nodes = {
7 crio = {
8 virtualisation.cri-o.enable = true;
9 };
10 };
11
12 testScript = ''
13 start_all()
14 crio.wait_for_unit("crio.service")
15 crio.succeed(
16 "critest --ginkgo.focus='Runtime info' --runtime-endpoint unix:///var/run/crio/crio.sock"
17 )
18 '';
19})