nixosTests.pixelfed.standard: handleTestOn -> runTestOn (#420281)

Aleksana a8826481 bca1d070

Changed files
+4 -6
nixos
tests
+1 -1
nixos/tests/all-tests.nix
···
mariadb-galera = handleTest ./mysql/mariadb-galera.nix { };
marytts = runTest ./marytts.nix;
mastodon = pkgs.recurseIntoAttrs (handleTest ./web-apps/mastodon { inherit handleTestOn; });
-
pixelfed = discoverTests (import ./web-apps/pixelfed { inherit handleTestOn; });
+
pixelfed = import ./web-apps/pixelfed { inherit runTestOn; };
mate = runTest ./mate.nix;
mate-wayland = runTest ./mate-wayland.nix;
matter-server = runTest ./matter-server.nix;
+2 -4
nixos/tests/web-apps/pixelfed/default.nix
···
{
-
system ? builtins.currentSystem,
-
handleTestOn,
+
runTestOn,
}:
let
supportedSystems = [
"x86_64-linux"
"i686-linux"
];
-
in
{
-
standard = handleTestOn supportedSystems ./standard.nix { inherit system; };
+
standard = runTestOn supportedSystems ./standard.nix;
}
+1 -1
nixos/tests/web-apps/pixelfed/standard.nix
···
-
import ../../make-test-python.nix {
+
{
name = "pixelfed-standard";
meta.maintainers = [ ];