mirror of
https://github.com/CHN-beta/nixpkgs.git
synced 2026-01-12 02:40:31 +08:00
nixosTests.pixelfed.standard: handleTestOn -> runTestOn
(cherry picked from commit 0c50bbe465)
This commit is contained in:
@@ -785,7 +785,7 @@ in
|
||||
mariadb-galera = handleTest ./mysql/mariadb-galera.nix { };
|
||||
marytts = handleTest ./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 = handleTest ./mate.nix { };
|
||||
mate-wayland = handleTest ./mate-wayland.nix { };
|
||||
matter-server = handleTest ./matter-server.nix { };
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import ../../make-test-python.nix {
|
||||
{
|
||||
name = "pixelfed-standard";
|
||||
meta.maintainers = [ ];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user