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

This commit is contained in:
Aleksana
2025-06-29 09:12:42 +08:00
committed by GitHub
3 changed files with 4 additions and 6 deletions

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 = [ ];