mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
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");
|
||
|
'';
|
||
|
})
|