9db625c7ab
Update, clean-up dependencies and add installed tests.
22 lines
663 B
Nix
22 lines
663 B
Nix
# run installed tests
|
|
import ./make-test.nix ({ pkgs, lib, ... }: {
|
|
name = "ostree";
|
|
|
|
meta = {
|
|
maintainers = pkgs.ostree.meta.maintainers;
|
|
};
|
|
|
|
# TODO: Wrap/patch the tests directly in the package
|
|
machine = { pkgs, ... }: {
|
|
environment.systemPackages = with pkgs; [
|
|
gnome-desktop-testing ostree gnupg (python3.withPackages (p: with p; [ pyyaml ]))
|
|
];
|
|
|
|
environment.variables.GI_TYPELIB_PATH = lib.makeSearchPath "lib/girepository-1.0" (with pkgs; [ gtk3 pango.out ostree gdk_pixbuf atk ]); # for GJS tests
|
|
};
|
|
|
|
testScript = ''
|
|
$machine->succeed("gnome-desktop-testing-runner -d ${pkgs.ostree.installedTests}/share");
|
|
'';
|
|
})
|