nixosTests.airsonic: migrate to runTest

Part Of #386873
This commit is contained in:
Martin Weinelt 2025-03-13 22:50:36 +01:00
parent 52822c9037
commit 93d9ca0d83
No known key found for this signature in database
GPG key ID: 87C1E9888F856759
2 changed files with 26 additions and 28 deletions

View file

@ -1,4 +1,3 @@
import ./make-test-python.nix (
{ pkgs, ... }: { pkgs, ... }:
{ {
name = "airsonic"; name = "airsonic";
@ -29,4 +28,3 @@ import ./make-test-python.nix (
retry(airsonic_is_up) retry(airsonic_is_up)
''; '';
} }
)

View file

@ -155,7 +155,7 @@ in {
agda = runTest ./agda.nix; agda = runTest ./agda.nix;
age-plugin-tpm-decrypt = runTest ./age-plugin-tpm-decrypt.nix; age-plugin-tpm-decrypt = runTest ./age-plugin-tpm-decrypt.nix;
agorakit = runTest ./web-apps/agorakit.nix; agorakit = runTest ./web-apps/agorakit.nix;
airsonic = handleTest ./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 = handleTest ./alice-lg.nix {};