nixosTests.pixelfed.standard: handleTestOn -> runTestOn (#420281)
This commit is contained in:
@@ -810,7 +810,7 @@ in
|
|||||||
mariadb-galera = handleTest ./mysql/mariadb-galera.nix { };
|
mariadb-galera = handleTest ./mysql/mariadb-galera.nix { };
|
||||||
marytts = runTest ./marytts.nix;
|
marytts = runTest ./marytts.nix;
|
||||||
mastodon = pkgs.recurseIntoAttrs (handleTest ./web-apps/mastodon { inherit handleTestOn; });
|
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 = runTest ./mate.nix;
|
||||||
mate-wayland = runTest ./mate-wayland.nix;
|
mate-wayland = runTest ./mate-wayland.nix;
|
||||||
matter-server = runTest ./matter-server.nix;
|
matter-server = runTest ./matter-server.nix;
|
||||||
|
|||||||
@@ -1,14 +1,12 @@
|
|||||||
{
|
{
|
||||||
system ? builtins.currentSystem,
|
runTestOn,
|
||||||
handleTestOn,
|
|
||||||
}:
|
}:
|
||||||
let
|
let
|
||||||
supportedSystems = [
|
supportedSystems = [
|
||||||
"x86_64-linux"
|
"x86_64-linux"
|
||||||
"i686-linux"
|
"i686-linux"
|
||||||
];
|
];
|
||||||
|
|
||||||
in
|
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";
|
name = "pixelfed-standard";
|
||||||
meta.maintainers = [ ];
|
meta.maintainers = [ ];
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user