nixosTests.alice-lg: migrate to runTest

Part Of #386873

Changed files
+4 -12
nixos
+3 -11
nixos/tests/alice-lg.nix
···
# This test does a basic functionality check for alice-lg
-
{
-
system ? builtins.currentSystem,
-
pkgs ? import ../.. {
-
inherit system;
-
config = { };
-
},
+
pkgs,
+
...
}:
-
let
-
inherit (import ../lib/testing-python.nix { inherit system pkgs; }) makeTest;
-
inherit (pkgs.lib) optionalString;
-
in
-
makeTest {
+
{
name = "alice-lg";
nodes = {
host1 = {
+1 -1
nixos/tests/all-tests.nix
···
airsonic = runTest ./airsonic.nix;
akkoma = handleTestOn [ "x86_64-linux" "aarch64-linux" ] ./akkoma.nix {};
akkoma-confined = handleTestOn [ "x86_64-linux" "aarch64-linux" ] ./akkoma.nix { confined = true; };
-
alice-lg = handleTest ./alice-lg.nix {};
+
alice-lg = runTest ./alice-lg.nix;
alloy = handleTest ./alloy.nix {};
allTerminfo = handleTest ./all-terminfo.nix {};
alps = handleTest ./alps.nix {};