mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
19 lines
384 B
Nix
19 lines
384 B
Nix
# run installed tests
|
|
import ./make-test.nix ({ pkgs, ... }:
|
|
|
|
{
|
|
name = "graphene";
|
|
|
|
meta = {
|
|
maintainers = pkgs.graphene.meta.maintainers;
|
|
};
|
|
|
|
machine = { pkgs, ... }: {
|
|
environment.systemPackages = with pkgs; [ gnome-desktop-testing ];
|
|
};
|
|
|
|
testScript = ''
|
|
$machine->succeed("gnome-desktop-testing-runner -d '${pkgs.graphene.installedTests}/share'");
|
|
'';
|
|
})
|