nixosTests.auth-mysql: migrate to runTest

Part Of #386873
This commit is contained in:
Martin Weinelt
2025-03-13 23:45:17 +01:00
parent add74983e7
commit 3f2541bbb1
2 changed files with 157 additions and 159 deletions

View File

@@ -183,7 +183,7 @@ in {
atticd = runTest ./atticd.nix;
atuin = runTest ./atuin.nix;
audiobookshelf = runTest ./audiobookshelf.nix;
auth-mysql = handleTest ./auth-mysql.nix {};
auth-mysql = runTest ./auth-mysql.nix;
authelia = handleTest ./authelia.nix {};
auto-cpufreq = handleTest ./auto-cpufreq.nix {};
autobrr = handleTest ./autobrr.nix {};

View File

@@ -1,4 +1,3 @@
import ./make-test-python.nix (
{ pkgs, lib, ... }:
let
@@ -177,4 +176,3 @@ import ./make-test-python.nix (
machine.wait_until_tty_matches("5", "login:")
'';
}
)