nixosTests.pixelfed.standard: handleTestOn -> runTestOn

This commit is contained in:
eljamm
2025-06-26 18:31:47 +02:00
parent 409a0cae52
commit 0c50bbe465
3 changed files with 4 additions and 6 deletions

View File

@@ -806,7 +806,7 @@ in
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;

View File

@@ -1,14 +1,12 @@
{
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;
}

View File

@@ -1,4 +1,4 @@
import ../../make-test-python.nix {
{
name = "pixelfed-standard";
meta.maintainers = [ ];