summary refs log tree commit diff
path: root/nixos/tests/graphene.nix
blob: 5591bcc30c07e18b1df991c384c730a15a50bcaf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# 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'");
  '';
})