nixosTests.alice-lg: migrate to runTest

Part Of #386873
This commit is contained in:
Martin Weinelt 2025-03-13 22:55:56 +01:00
parent 93d9ca0d83
commit 1f264807a9
No known key found for this signature in database
GPG key ID: 87C1E9888F856759
2 changed files with 4 additions and 12 deletions

View file

@ -1,18 +1,10 @@
# This test does a basic functionality check for alice-lg # This test does a basic functionality check for alice-lg
{ {
system ? builtins.currentSystem, pkgs,
pkgs ? import ../.. { ...
inherit system;
config = { };
},
}: }:
let {
inherit (import ../lib/testing-python.nix { inherit system pkgs; }) makeTest;
inherit (pkgs.lib) optionalString;
in
makeTest {
name = "alice-lg"; name = "alice-lg";
nodes = { nodes = {
host1 = { host1 = {

View file

@ -158,7 +158,7 @@ in {
airsonic = runTest ./airsonic.nix; airsonic = runTest ./airsonic.nix;
akkoma = handleTestOn [ "x86_64-linux" "aarch64-linux" ] ./akkoma.nix {}; akkoma = handleTestOn [ "x86_64-linux" "aarch64-linux" ] ./akkoma.nix {};
akkoma-confined = handleTestOn [ "x86_64-linux" "aarch64-linux" ] ./akkoma.nix { confined = true; }; 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 {}; alloy = handleTest ./alloy.nix {};
allTerminfo = handleTest ./all-terminfo.nix {}; allTerminfo = handleTest ./all-terminfo.nix {};
alps = handleTest ./alps.nix {}; alps = handleTest ./alps.nix {};