Unverified Commit a8826481 authored by Aleksana's avatar Aleksana Committed by GitHub
Browse files

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

parents bca1d070 0c50bbe4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
+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;
}
+1 −1
Original line number Diff line number Diff line
import ../../make-test-python.nix {
{
  name = "pixelfed-standard";
  meta.maintainers = [ ];