diff --git a/nixos/tests/all-tests.nix b/nixos/tests/all-tests.nix index 837bdc7e9fdd..acef9bb13f66 100644 --- a/nixos/tests/all-tests.nix +++ b/nixos/tests/all-tests.nix @@ -585,7 +585,7 @@ in { mate = handleTest ./mate.nix {}; mate-wayland = handleTest ./mate-wayland.nix {}; matter-server = handleTest ./matter-server.nix {}; - matomo = handleTest ./matomo.nix {}; + matomo = runTest ./matomo.nix; matrix-appservice-irc = runTest ./matrix/appservice-irc.nix; matrix-conduit = handleTest ./matrix/conduit.nix {}; matrix-synapse = handleTest ./matrix/synapse.nix {}; diff --git a/nixos/tests/matomo.nix b/nixos/tests/matomo.nix index a3351b573265..9562cb7e4e2b 100644 --- a/nixos/tests/matomo.nix +++ b/nixos/tests/matomo.nix @@ -1,12 +1,5 @@ +{ lib, ... }: { - system ? builtins.currentSystem, - config ? { }, - pkgs ? import ../.. { inherit system config; }, -}: - -with import ../lib/testing-python.nix { inherit system pkgs; }; - -makeTest { name = "matomo"; nodes.machine = @@ -54,12 +47,12 @@ makeTest { ''; meta.maintainers = - with pkgs.lib.maintainers; + with lib.maintainers; [ florianjacob mmilata twey boozedog ] - ++ pkgs.lib.teams.flyingcircus.members; + ++ lib.teams.flyingcircus.members; }