Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
19 lines
457 B
Nix
19 lines
457 B
Nix
# This test runs CRI-O and verifies via critest
|
|
import ./make-test-python.nix ({ pkgs, ... }: {
|
|
name = "cri-o";
|
|
meta.maintainers = with pkgs.lib; teams.podman.members;
|
|
|
|
nodes = {
|
|
crio = {
|
|
virtualisation.cri-o.enable = true;
|
|
};
|
|
};
|
|
|
|
testScript = ''
|
|
start_all()
|
|
crio.wait_for_unit("crio.service")
|
|
crio.succeed(
|
|
"critest --ginkgo.focus='Runtime info' --runtime-endpoint unix:///var/run/crio/crio.sock"
|
|
)
|
|
'';
|
|
})
|