about summary refs log tree commit diff
path: root/nixos/tests/libxmlb.nix
diff options
context:
space:
mode:
authorworldofpeace <worldofpeace@protonmail.ch>2019-11-07 08:02:33 -0500
committerworldofpeace <worldofpeace@protonmail.ch>2019-11-07 08:02:33 -0500
commit85251b3c2485b814719b70d9c58718ee58400256 (patch)
treeae8ba9c75073ddd2fa382a16df765599102f79d3 /nixos/tests/libxmlb.nix
parentf2ecbaa6cfe35bc1cebed8a9f3df513cdbc47836 (diff)
downloadnixlib-85251b3c2485b814719b70d9c58718ee58400256.tar
nixlib-85251b3c2485b814719b70d9c58718ee58400256.tar.gz
nixlib-85251b3c2485b814719b70d9c58718ee58400256.tar.bz2
nixlib-85251b3c2485b814719b70d9c58718ee58400256.tar.lz
nixlib-85251b3c2485b814719b70d9c58718ee58400256.tar.xz
nixlib-85251b3c2485b814719b70d9c58718ee58400256.tar.zst
nixlib-85251b3c2485b814719b70d9c58718ee58400256.zip
nixosTests.libxmlb: port to python
Diffstat (limited to 'nixos/tests/libxmlb.nix')
-rw-r--r--nixos/tests/libxmlb.nix17
1 files changed, 0 insertions, 17 deletions
diff --git a/nixos/tests/libxmlb.nix b/nixos/tests/libxmlb.nix
deleted file mode 100644
index 3bee568ac5a2..000000000000
--- a/nixos/tests/libxmlb.nix
+++ /dev/null
@@ -1,17 +0,0 @@
-# run installed tests
-import ./make-test.nix ({ pkgs, ... }:
-
-{
-  name = "libxmlb";
-  meta = {
-    maintainers = pkgs.libxmlb.meta.maintainers;
-  };
-
-  machine = { pkgs, ... }: {
-    environment.systemPackages = with pkgs; [ gnome-desktop-testing ];
-  };
-
-  testScript = ''
-    $machine->succeed("gnome-desktop-testing-runner -d '${pkgs.libxmlb.installedTests}/share'");
-  '';
-})