Loading nixos/tests/all-tests.nix +1 −1 Original line number Diff line number Diff line Loading @@ -810,7 +810,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; Loading nixos/tests/web-apps/pixelfed/default.nix +2 −4 Original line number Diff line number Diff line { 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; } nixos/tests/web-apps/pixelfed/standard.nix +1 −1 Original line number Diff line number Diff line import ../../make-test-python.nix { { name = "pixelfed-standard"; meta.maintainers = [ ]; Loading Loading
nixos/tests/all-tests.nix +1 −1 Original line number Diff line number Diff line Loading @@ -810,7 +810,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; Loading
nixos/tests/web-apps/pixelfed/default.nix +2 −4 Original line number Diff line number Diff line { 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; }
nixos/tests/web-apps/pixelfed/standard.nix +1 −1 Original line number Diff line number Diff line import ../../make-test-python.nix { { name = "pixelfed-standard"; meta.maintainers = [ ]; Loading